Skip to content

Commit 540614b

Browse files
authored
Add files via upload
1 parent 8814b15 commit 540614b

File tree

4 files changed

+111
-1
lines changed

4 files changed

+111
-1
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
3+
4+
5+
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
6+
android:id="@android:id/text1"
7+
android:layout_width="match_parent"
8+
android:layout_height="wrap_content"
9+
android:padding="10dp"
10+
android:gravity="center"
11+
android:textSize="16sp"
12+
android:textStyle="bold"
13+
android:background="@color/color_btn_subfilter_spinner"
14+
android:textColor="@color/color_btn_subfilter_txt"/>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
3+
android:layout_width="match_parent"
4+
android:layout_height="match_parent">
5+
6+
7+
<LinearLayout
8+
android:layout_width="match_parent"
9+
android:layout_height="match_parent"
10+
android:orientation="vertical"
11+
android:background="@color/color_btn_get_config">
12+
13+
14+
<LinearLayout
15+
android:layout_width="match_parent"
16+
android:layout_height="wrap_content"
17+
android:orientation="horizontal">
18+
19+
<TextView
20+
android:id="@+id/filter_sub_title"
21+
android:layout_width="0dp"
22+
android:layout_height="wrap_content"
23+
android:layout_weight="1"
24+
android:padding="15dp"
25+
android:textSize="18sp"
26+
android:textStyle="bold"
27+
android:text="@string/title_GFW_config_filter_dialog"
28+
android:textColor="@color/colorBlack" />
29+
30+
<Button
31+
android:id="@+id/button_manage_subscription"
32+
android:layout_width="wrap_content"
33+
android:layout_height="wrap_content"
34+
android:padding="15dp"
35+
android:layout_gravity="center"
36+
android:textColor="@color/color_btn_get_txt"
37+
android:backgroundTint="@color/color_btn_subfilter_manage"
38+
android:text="Manage" />
39+
40+
</LinearLayout>
41+
42+
43+
<ListView
44+
android:id="@+id/filter_sub_list_view"
45+
android:layout_width="match_parent"
46+
android:layout_height="wrap_content" />
47+
48+
</LinearLayout>
49+
50+
51+
52+
</androidx.constraintlayout.widget.ConstraintLayout>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
3+
android:layout_width="match_parent"
4+
android:layout_height="match_parent"
5+
android:background="@color/color_btn_get_config_light1">
6+
7+
8+
9+
<LinearLayout
10+
android:layout_width="match_parent"
11+
android:layout_height="match_parent"
12+
android:orientation="vertical">
13+
14+
15+
<TextView
16+
android:id="@+id/textview_generic_dialog_title"
17+
android:layout_width="match_parent"
18+
android:layout_height="wrap_content"
19+
android:padding="15dp"
20+
android:textSize="18sp"
21+
android:textStyle="bold"
22+
android:text="Notice:"
23+
android:background="@color/color_btn_get_config_light3"
24+
android:textColor="@color/colorBlack" />
25+
26+
<ScrollView
27+
android:layout_width="match_parent"
28+
android:layout_height="match_parent"
29+
android:padding="15dp">
30+
31+
<TextView
32+
android:id="@+id/textView_generic_notice"
33+
android:layout_width="match_parent"
34+
android:layout_height="wrap_content"
35+
android:padding="15dp"
36+
android:autoLink="web"
37+
android:linksClickable="true"
38+
android:textColor="@color/colorBlack"
39+
android:text="" />
40+
</ScrollView>
41+
42+
</LinearLayout>
43+
44+
</androidx.constraintlayout.widget.ConstraintLayout>

V2rayNG/app/src/main/res/layout/gfw_progress_layout.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
style="?android:attr/progressBarStyleHorizontal"
1111
android:layout_width="0dp"
1212
android:layout_height="wrap_content"
13-
android:backgroundTint="@color/white"
13+
android:backgroundTint="@android:color/white"
1414
android:indeterminate="false"
1515
android:indeterminateTint="#1a09d6"
1616
android:max="100"

0 commit comments

Comments
 (0)