OsmAnd/OsmAnd/res/layout/preference_activity.xml

55 lines
1.8 KiB
XML
Raw Normal View History

2014-12-30 11:45:33 +01:00
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="com.antonioleiva.materialeverywhere.SettingsActivity" >
2017-02-19 13:34:42 +01:00
<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<android.support.v7.widget.Toolbar
2015-01-08 14:55:21 +01:00
android:id="@+id/toolbar"
2014-12-30 11:45:33 +01:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/colorPrimary"
android:minHeight="?attr/actionBarSize"
app:theme="@style/ThemeOverlay.AppCompat.ActionBar">
2017-02-19 13:34:42 +01:00
<Spinner
android:id="@+id/spinner_nav"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
2015-05-21 17:02:34 +02:00
android:layout_gravity="center_horizontal"
android:popupBackground="?attr/spinnerListBackground"/>
2017-02-19 13:34:42 +01:00
<ProgressBar android:id="@+id/ProgressBar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="right"/>
</android.support.v7.widget.Toolbar>
2017-02-19 13:34:42 +01:00
</android.support.design.widget.AppBarLayout>
2014-12-30 11:45:33 +01:00
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent" >
<ListView
android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<ImageView
2015-01-08 14:55:21 +01:00
android:id="@+id/shadowView"
2014-12-30 11:45:33 +01:00
android:layout_width="match_parent"
android:layout_height="@dimen/abp__shadow_height"
android:src="@drawable/preference_activity_action_bar_shadow"
tools:ignore="ContentDescription" />
</FrameLayout>
</LinearLayout>