Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
GFW-knocker authored Jan 25, 2025
1 parent 8814b15 commit 540614b
Show file tree
Hide file tree
Showing 4 changed files with 111 additions and 1 deletion.
14 changes: 14 additions & 0 deletions V2rayNG/app/src/main/res/layout/gfw_config_filter_spinner.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>



<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/text1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="10dp"
android:gravity="center"
android:textSize="16sp"
android:textStyle="bold"
android:background="@color/color_btn_subfilter_spinner"
android:textColor="@color/color_btn_subfilter_txt"/>
52 changes: 52 additions & 0 deletions V2rayNG/app/src/main/res/layout/gfw_filter_sub_dialog.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">


<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@color/color_btn_get_config">


<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">

<TextView
android:id="@+id/filter_sub_title"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:padding="15dp"
android:textSize="18sp"
android:textStyle="bold"
android:text="@string/title_GFW_config_filter_dialog"
android:textColor="@color/colorBlack" />

<Button
android:id="@+id/button_manage_subscription"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="15dp"
android:layout_gravity="center"
android:textColor="@color/color_btn_get_txt"
android:backgroundTint="@color/color_btn_subfilter_manage"
android:text="Manage" />

</LinearLayout>


<ListView
android:id="@+id/filter_sub_list_view"
android:layout_width="match_parent"
android:layout_height="wrap_content" />

</LinearLayout>



</androidx.constraintlayout.widget.ConstraintLayout>
44 changes: 44 additions & 0 deletions V2rayNG/app/src/main/res/layout/gfw_generic_dialog.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/color_btn_get_config_light1">



<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">


<TextView
android:id="@+id/textview_generic_dialog_title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="15dp"
android:textSize="18sp"
android:textStyle="bold"
android:text="Notice:"
android:background="@color/color_btn_get_config_light3"
android:textColor="@color/colorBlack" />

<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="15dp">

<TextView
android:id="@+id/textView_generic_notice"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="15dp"
android:autoLink="web"
android:linksClickable="true"
android:textColor="@color/colorBlack"
android:text="" />
</ScrollView>

</LinearLayout>

</androidx.constraintlayout.widget.ConstraintLayout>
2 changes: 1 addition & 1 deletion V2rayNG/app/src/main/res/layout/gfw_progress_layout.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:backgroundTint="@color/white"
android:backgroundTint="@android:color/white"
android:indeterminate="false"
android:indeterminateTint="#1a09d6"
android:max="100"
Expand Down

0 comments on commit 540614b

Please sign in to comment.