summaryrefslogtreecommitdiffstats
path: root/res/layout/action_mode.xml
diff options
context:
space:
mode:
Diffstat (limited to 'res/layout/action_mode.xml')
-rw-r--r--res/layout/action_mode.xml47
1 files changed, 30 insertions, 17 deletions
diff --git a/res/layout/action_mode.xml b/res/layout/action_mode.xml
index 096187b95..b1f774ce2 100644
--- a/res/layout/action_mode.xml
+++ b/res/layout/action_mode.xml
@@ -14,22 +14,35 @@
limitations under the License.
-->
-<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
+<LinearLayout
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:id="@+id/navigation_bar"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:orientation="horizontal">
+
+ <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="wrap_content"
android:layout_height="match_parent">
- <Button android:id="@+id/selection_menu"
- style="?android:attr/actionButtonStyle"
- android:divider="?android:attr/listDividerAlertDialog"
- android:textAppearance="?android:attr/textAppearanceLargePopupMenu"
- android:textColor="?android:attr/actionMenuTextColor"
- android:singleLine="true"
- android:gravity="left|center_vertical"
- android:paddingRight="25dip"
+ <ImageView android:layout_gravity="right"
+ android:layout_width="wrap_content"
+ android:layout_height="match_parent"
+ android:src="@drawable/dropdown_ic_arrow" />
+ <Button android:id="@+id/selection_menu"
+ style="?android:attr/actionButtonStyle"
+ android:divider="?android:attr/listDividerAlertDialog"
+ android:textAppearance="?android:attr/textAppearanceLargePopupMenu"
+ android:textColor="?android:attr/actionMenuTextColor"
+ android:singleLine="true"
+ android:gravity="left|center_vertical"
+ android:paddingEnd="25dip"
+ android:layout_width="wrap_content"
+ android:layout_height="match_parent" />
+ </FrameLayout>
+ <ImageView android:layout_marginStart="16dip"
+ android:layout_marginEnd="8dip"
android:layout_width="wrap_content"
- android:layout_height="match_parent" />
- <ImageView android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:src="@drawable/dropdown_ic_arrow"
- android:layout_toRightOf="@id/selection_menu"/>
-
-</RelativeLayout>
+ android:layout_height="match_parent"
+ android:gravity="bottom"
+ android:src="@drawable/cab_divider_vertical_dark" />
+</LinearLayout>