2012-05-22 20:50:19 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2014-11-17 16:25:17 +01:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
2015-01-24 13:04:52 +01:00
|
|
|
android:layout_marginTop="?attr/actionBarSize"
|
2014-11-17 16:25:17 +01:00
|
|
|
android:orientation="vertical">
|
2012-05-22 20:50:19 +02:00
|
|
|
|
2014-11-17 16:25:17 +01:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/Label"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center"
|
2015-01-24 13:04:52 +01:00
|
|
|
android:text="@string/select_plugin_to_activate"/>
|
2014-11-17 16:25:17 +01:00
|
|
|
|
|
|
|
<ListView
|
|
|
|
android:id="@android:id/list"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:layout_height="0dp"
|
2015-01-24 13:04:52 +01:00
|
|
|
android:layout_marginTop="10dp"/>
|
2012-05-22 20:50:19 +02:00
|
|
|
</LinearLayout>
|