OsmAnd/OsmAnd/res/layout/fragment_live_updates.xml

29 lines
1,013 B
XML
Raw Normal View History

2016-01-29 19:13:48 +01:00
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
2018-04-03 20:42:56 +02:00
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
2016-01-29 19:13:48 +01:00
android:layout_height="match_parent">
<ExpandableListView
android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:divider="@null"
android:drawSelectorOnTop="true"
android:footerDividersEnabled="false"
android:groupIndicator="@null"
android:headerDividersEnabled="false"
android:orientation="vertical"
tools:context=".liveupdates.LiveUpdatesFragment"/>
<ProgressBar
android:id="@+id/progress"
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="match_parent"
android:layout_height="8dp"
android:layout_gravity="top"
android:indeterminate="true"
android:padding="0dp"
android:visibility="invisible"/>
</FrameLayout>