31 lines
895 B
XML
31 lines
895 B
XML
<?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="match_parent"
|
|
android:background="?attr/card_bg"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/dashHeaderHeight"
|
|
android:orientation="horizontal">
|
|
|
|
<net.osmand.plus.widgets.TextViewEx
|
|
android:id="@+id/plugin_text"
|
|
style="?attr/dashboardSubHeaderStyle"
|
|
android:text="@string/prefs_plugins"/>
|
|
|
|
<net.osmand.plus.widgets.ButtonEx
|
|
android:id="@+id/show_all"
|
|
style="?attr/dashboardGeneralButtonStyle"
|
|
android:text="@string/show_all"
|
|
/>
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/plugins"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical" />
|
|
</LinearLayout>
|