2012-09-19 13:14:36 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2013-10-11 18:59:40 +02:00
|
|
|
android:paddingTop="3dp"
|
|
|
|
android:paddingLeft="3dp"
|
|
|
|
android:paddingRight="3dp"
|
2013-10-11 20:25:18 +02:00
|
|
|
android:paddingBottom="11dp"
|
2013-10-11 18:59:40 +02:00
|
|
|
android:baselineAligned="false"
|
2012-09-19 13:14:36 +01:00
|
|
|
android:orientation="vertical" >
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/summary"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textSize="14sp"
|
|
|
|
android:textStyle="bold" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/appid"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textSize="12sp" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/signature"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textSize="12sp" />
|
|
|
|
|
|
|
|
<TextView
|
2013-10-23 00:18:19 +02:00
|
|
|
android:id="@+id/antifeatures"
|
2012-09-19 13:14:36 +01:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2013-10-17 22:23:06 +02:00
|
|
|
android:layout_marginTop="6sp"
|
2013-10-23 00:18:19 +02:00
|
|
|
android:textSize="14sp"
|
|
|
|
android:textStyle="bold"
|
|
|
|
android:textColor="#ff0000" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/description"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="8sp"
|
2012-09-19 13:14:36 +01:00
|
|
|
android:singleLine="false" />
|
2013-04-28 18:48:22 +10:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/permissions"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2013-10-11 20:25:18 +02:00
|
|
|
android:layout_marginTop="8sp"
|
2013-04-28 18:48:22 +10:00
|
|
|
android:singleLine="true"
|
|
|
|
android:textSize="14sp"
|
2013-04-28 19:57:12 +10:00
|
|
|
android:textStyle="bold" />
|
2013-04-28 18:48:22 +10:00
|
|
|
|
2013-04-28 18:52:26 +10:00
|
|
|
<TextView
|
2013-04-28 18:48:22 +10:00
|
|
|
android:id="@+id/permissions_list"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:singleLine="false" />
|
2012-09-19 13:14:36 +01:00
|
|
|
|
|
|
|
</LinearLayout>
|