OsmAnd/OsmAnd/res/layout/grid_menu_row.xml

47 lines
1.1 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
2018-07-16 16:41:36 +02:00
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="@dimen/bottom_sheet_content_padding_small">
<Space
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="0.25"/>
<FrameLayout
android:id="@+id/first_item_container"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="3"/>
<Space
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="0.5"/>
<FrameLayout
android:id="@+id/second_item_container"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="3"/>
<Space
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="0.5"/>
<FrameLayout
android:id="@+id/third_item_container"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="3"/>
<Space
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="0.25"/>
</LinearLayout>