2018-01-05 19:13:09 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2018-01-10 14:32:18 +01:00
|
|
|
android:paddingTop="@dimen/bottom_sheet_content_padding_small">
|
2018-01-05 19:13:09 +01:00
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/first_item_container"
|
2018-01-10 14:32:18 +01:00
|
|
|
android:layout_width="@dimen/grid_menu_item_width"
|
2018-01-05 19:13:09 +01:00
|
|
|
android:layout_height="wrap_content"/>
|
|
|
|
|
|
|
|
<Space
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_weight="1"/>
|
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/second_item_container"
|
2018-01-10 14:32:18 +01:00
|
|
|
android:layout_width="@dimen/grid_menu_item_width"
|
2018-01-05 19:13:09 +01:00
|
|
|
android:layout_height="wrap_content"/>
|
|
|
|
|
|
|
|
<Space
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_weight="1"/>
|
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/third_item_container"
|
2018-01-10 14:32:18 +01:00
|
|
|
android:layout_width="@dimen/grid_menu_item_width"
|
2018-01-05 19:13:09 +01:00
|
|
|
android:layout_height="wrap_content"/>
|
|
|
|
|
|
|
|
</LinearLayout>
|