|
1 | 1 | <?xml version="1.0" encoding="utf-8"?> |
2 | 2 | <androidx.appcompat.widget.LinearLayoutCompat xmlns:android="http://schemas.android.com/apk/res/android" |
| 3 | + xmlns:app="http://schemas.android.com/apk/res-auto" |
3 | 4 | android:layout_width="match_parent" |
4 | 5 | android:layout_height="match_parent" |
5 | 6 | android:divider="?android:attr/dividerHorizontal" |
|
29 | 30 | android:layout_alignParentTop="true" |
30 | 31 | android:text="@string/intent_action_title"/> |
31 | 32 |
|
32 | | - <ImageButton |
33 | | - android:id="@+id/cmd_edit_history" |
34 | | - android:layout_width="wrap_content" |
35 | | - android:layout_height="wrap_content" |
36 | | - android:layout_alignParentRight="true" |
37 | | - android:layout_alignParentEnd="true" |
38 | | - android:layout_below="@+id/lbl_action" |
39 | | - android:visibility="gone" |
40 | | - android:background="@android:drawable/ic_menu_more" /> |
| 33 | + <ImageButton |
| 34 | + android:id="@+id/cmd_edit_history" |
| 35 | + android:layout_width="wrap_content" |
| 36 | + android:layout_height="wrap_content" |
| 37 | + android:layout_below="@+id/lbl_action" |
| 38 | + android:layout_alignParentEnd="true" |
| 39 | + android:layout_alignParentRight="true" |
| 40 | + android:background="@android:color/transparent" |
| 41 | + android:src="@drawable/ic_expand_more" |
| 42 | + android:visibility="gone" |
| 43 | + app:tint="?android:textColorPrimary" /> |
41 | 44 |
|
42 | 45 | <uk.co.ashtonbrsc.intentexplode.widget.BlockEnterEditText |
43 | 46 | android:id="@+id/action_edit" |
|
64 | 67 | android:layout_below="@+id/action_edit" |
65 | 68 | android:text="@string/intent_data_title" /> |
66 | 69 |
|
67 | | - <ImageButton android:id="@+id/cmd_data_history" |
68 | | - android:layout_width="wrap_content" |
69 | | - android:layout_height="wrap_content" |
70 | | - android:layout_alignParentRight="true" |
71 | | - android:layout_alignParentEnd="true" |
72 | | - android:layout_below="@+id/lbl_data" |
73 | | - android:visibility="gone" |
74 | | - android:background="@android:drawable/ic_menu_more" /> |
| 70 | + <ImageButton |
| 71 | + android:id="@+id/cmd_data_history" |
| 72 | + android:layout_width="wrap_content" |
| 73 | + android:layout_height="wrap_content" |
| 74 | + android:layout_below="@+id/lbl_data" |
| 75 | + android:layout_alignParentEnd="true" |
| 76 | + android:layout_alignParentRight="true" |
| 77 | + android:background="@android:color/transparent" |
| 78 | + android:src="@drawable/ic_expand_more" |
| 79 | + android:visibility="gone" |
| 80 | + app:tint="?android:textColorPrimary" /> |
75 | 81 |
|
76 | 82 | <uk.co.ashtonbrsc.intentexplode.widget.BlockEnterEditText |
77 | 83 | android:id="@+id/data_edit" |
|
95 | 101 | android:layout_below="@+id/data_edit" |
96 | 102 | android:text="@string/intent_mime_type_title" /> |
97 | 103 |
|
98 | | - <ImageButton android:id="@+id/cmd_type_history" |
99 | | - android:layout_width="wrap_content" |
100 | | - android:layout_height="wrap_content" |
101 | | - android:layout_alignParentRight="true" |
102 | | - android:layout_alignParentEnd="true" |
103 | | - android:layout_below="@+id/lbl_type" |
104 | | - android:visibility="gone" |
105 | | - android:background="@android:drawable/ic_menu_more" /> |
| 104 | + <ImageButton |
| 105 | + android:id="@+id/cmd_type_history" |
| 106 | + android:layout_width="wrap_content" |
| 107 | + android:layout_height="wrap_content" |
| 108 | + android:layout_below="@+id/lbl_type" |
| 109 | + android:layout_alignParentEnd="true" |
| 110 | + android:layout_alignParentRight="true" |
| 111 | + android:background="@android:color/transparent" |
| 112 | + android:src="@drawable/ic_expand_more" |
| 113 | + android:visibility="gone" |
| 114 | + app:tint="?android:textColorPrimary" /> |
106 | 115 | <uk.co.ashtonbrsc.intentexplode.widget.BlockEnterEditText |
107 | 116 | android:id="@+id/type_edit" |
108 | 117 | style="@style/EditTextNoSuggestion" |
|
125 | 134 | android:layout_below="@+id/type_edit" |
126 | 135 | android:text="@string/intent_uri_title" /> |
127 | 136 |
|
128 | | - <ImageButton android:id="@+id/cmd_uri_history" |
129 | | - android:layout_width="wrap_content" |
130 | | - android:layout_height="wrap_content" |
131 | | - android:layout_alignParentRight="true" |
132 | | - android:layout_alignParentEnd="true" |
133 | | - android:layout_below="@+id/lbl_uri" |
134 | | - android:visibility="gone" |
135 | | - android:background="@android:drawable/ic_menu_more" /> |
| 137 | + <ImageButton |
| 138 | + android:id="@+id/cmd_uri_history" |
| 139 | + android:layout_width="wrap_content" |
| 140 | + android:layout_height="wrap_content" |
| 141 | + android:layout_below="@+id/lbl_uri" |
| 142 | + android:layout_alignParentEnd="true" |
| 143 | + android:layout_alignParentRight="true" |
| 144 | + android:background="@android:color/transparent" |
| 145 | + android:src="@drawable/ic_expand_more" |
| 146 | + android:visibility="gone" |
| 147 | + app:tint="?android:textColorPrimary" /> |
136 | 148 | <uk.co.ashtonbrsc.intentexplode.widget.BlockEnterEditText |
137 | 149 | android:id="@+id/uri_edit" |
138 | 150 | style="@style/EditTextNoSuggestion" |
|
0 commit comments