25 lines
No EOL
881 B
XML
25 lines
No EOL
881 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical"
|
|
android:background="@drawable/bg_cardui"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<LinearLayout android:orientation="horizontal"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="@dimen/dashHeaderHeight">
|
|
<TextView android:id="@+id/plugin_text"
|
|
android:text="@string/prefs_plugins"
|
|
style="@style/DashboardSubHeader"/>
|
|
<Button android:id="@+id/show_all"
|
|
android:text="@string/show_all"
|
|
style="@style/DashboardGeneralButton"/>
|
|
</LinearLayout>
|
|
|
|
<LinearLayout android:id="@+id/plugins"
|
|
android:orientation="vertical"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
</LinearLayout>
|
|
</LinearLayout> |