|
8 | 8 |
|
9 | 9 | <LinearLayout |
10 | 10 | android:id="@+id/playlist_ctrl_play_bg_button" |
11 | | - android:layout_width="match_parent" |
12 | | - android:layout_height="@dimen/playlist_ctrl_height" |
| 11 | + android:layout_width="0dp" |
| 12 | + android:layout_height="wrap_content" |
13 | 13 | android:layout_weight="1" |
| 14 | + android:orientation="vertical" |
| 15 | + android:gravity="center" |
14 | 16 | android:background="?attr/selectableItemBackground" |
15 | 17 | android:clickable="true" |
16 | 18 | android:focusable="true" |
17 | | - android:gravity="center"> |
| 19 | + android:paddingVertical="8dp"> |
18 | 20 |
|
19 | | - <org.schabi.newpipe.views.NewPipeTextView |
| 21 | + <ImageView |
| 22 | + android:layout_width="24dp" |
| 23 | + android:layout_height="24dp" |
| 24 | + android:src="@drawable/ic_headset" |
| 25 | + android:contentDescription="@string/controls_background_title" /> |
| 26 | + |
| 27 | + <TextView |
20 | 28 | android:layout_width="wrap_content" |
21 | 29 | android:layout_height="wrap_content" |
22 | | - android:drawableStart="@drawable/ic_headset" |
23 | | - android:drawablePadding="4dp" |
24 | | - android:gravity="center_vertical" |
25 | 30 | android:text="@string/controls_background_title" |
26 | | - android:textColor="?attr/colorAccent" |
27 | | - android:textSize="@dimen/channel_rss_title_size" /> |
| 31 | + android:textColor="#6C6C6C" |
| 32 | + android:textSize="@dimen/channel_rss_title_size" |
| 33 | + android:gravity="center" /> |
28 | 34 | </LinearLayout> |
29 | 35 |
|
30 | 36 | <View |
|
37 | 43 |
|
38 | 44 | <LinearLayout |
39 | 45 | android:id="@+id/playlist_ctrl_play_all_button" |
40 | | - android:layout_width="match_parent" |
41 | | - android:layout_height="match_parent" |
| 46 | + android:layout_width="0dp" |
| 47 | + android:layout_height="wrap_content" |
42 | 48 | android:layout_weight="1" |
| 49 | + android:orientation="vertical" |
| 50 | + android:gravity="center" |
43 | 51 | android:background="?attr/selectableItemBackground" |
44 | 52 | android:clickable="true" |
45 | 53 | android:focusable="true" |
46 | | - android:gravity="center"> |
| 54 | + android:paddingVertical="8dp"> |
| 55 | + |
| 56 | + <ImageView |
| 57 | + android:layout_width="24dp" |
| 58 | + android:layout_height="24dp" |
| 59 | + android:src="@drawable/ic_playlist_play" |
| 60 | + android:contentDescription="@string/play_all" /> |
47 | 61 |
|
48 | | - <org.schabi.newpipe.views.NewPipeTextView |
| 62 | + <TextView |
49 | 63 | android:layout_width="wrap_content" |
50 | 64 | android:layout_height="wrap_content" |
51 | | - android:drawableStart="@drawable/ic_playlist_play" |
52 | | - android:drawablePadding="4dp" |
53 | | - android:gravity="center_vertical" |
54 | 65 | android:text="@string/play_all" |
55 | | - android:textColor="?attr/colorAccent" |
56 | | - android:textSize="@dimen/channel_rss_title_size" /> |
| 66 | + android:textColor="#6C6C6C" |
| 67 | + android:textSize="@dimen/channel_rss_title_size" |
| 68 | + android:gravity="center" /> |
57 | 69 | </LinearLayout> |
58 | 70 |
|
59 | 71 | <View |
|
66 | 78 |
|
67 | 79 | <LinearLayout |
68 | 80 | android:id="@+id/playlist_ctrl_play_popup_button" |
69 | | - android:layout_width="match_parent" |
70 | | - android:layout_height="match_parent" |
| 81 | + android:layout_width="0dp" |
| 82 | + android:layout_height="wrap_content" |
71 | 83 | android:layout_weight="1" |
| 84 | + android:orientation="vertical" |
| 85 | + android:gravity="center" |
72 | 86 | android:background="?attr/selectableItemBackground" |
73 | 87 | android:clickable="true" |
74 | 88 | android:focusable="true" |
75 | | - android:gravity="center"> |
| 89 | + android:paddingVertical="8dp"> |
| 90 | + |
| 91 | + <ImageView |
| 92 | + android:layout_width="24dp" |
| 93 | + android:layout_height="24dp" |
| 94 | + android:src="@drawable/ic_picture_in_picture" |
| 95 | + android:contentDescription="@string/controls_popup_title" /> |
76 | 96 |
|
77 | | - <org.schabi.newpipe.views.NewPipeTextView |
| 97 | + <TextView |
78 | 98 | android:layout_width="wrap_content" |
79 | 99 | android:layout_height="wrap_content" |
80 | | - android:drawableStart="@drawable/ic_picture_in_picture" |
81 | | - android:drawablePadding="4dp" |
82 | | - android:gravity="center_vertical" |
83 | 100 | android:text="@string/controls_popup_title" |
84 | | - android:textColor="?attr/colorAccent" |
85 | | - android:textSize="@dimen/channel_rss_title_size" /> |
| 101 | + android:textColor="#6C6C6C" |
| 102 | + android:textSize="@dimen/channel_rss_title_size" |
| 103 | + android:gravity="center" /> |
86 | 104 | </LinearLayout> |
| 105 | + |
87 | 106 | </LinearLayout> |
0 commit comments