mirror of https://github.com/tasks/tasks
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
83 lines
2.9 KiB
XML
83 lines
2.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- See the file "LICENSE" for the full license governing this code. -->
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:background="@android:drawable/list_selector_background"
|
|
android:paddingTop="4dip"
|
|
android:paddingBottom="4dip"
|
|
android:paddingLeft="4dip"
|
|
android:paddingRight="4dip">
|
|
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:paddingLeft="5dip"
|
|
android:orientation="vertical">
|
|
|
|
<!-- icon -->
|
|
<ImageView android:id="@+id/icon"
|
|
android:layout_width="48dip"
|
|
android:layout_height="48dip"
|
|
android:gravity="center"
|
|
android:scaleType="fitCenter"/>
|
|
|
|
<!-- free -->
|
|
<TextView android:id="@+id/free"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center"
|
|
android:textSize="10sp"
|
|
android:textColor="#00ff00"
|
|
android:text="@string/AOA_free" />
|
|
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="100"
|
|
android:paddingLeft="8dip"
|
|
android:paddingRight="3dip"
|
|
android:orientation="vertical">
|
|
|
|
<!-- add-on name -->
|
|
<TextView android:id="@+id/title"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentTop="true"
|
|
android:layout_toRightOf="@id/icon"
|
|
android:singleLine="true"
|
|
style="@style/TextAppearance.TAd_ItemTitle"/>
|
|
|
|
<!-- description -->
|
|
<TextView android:id="@+id/description"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@id/title"
|
|
android:layout_toRightOf="@id/icon"
|
|
android:singleLine="false"
|
|
android:textSize="11sp"
|
|
style="@style/TextAppearance.TAd_ItemDetails"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<!-- buttons -->
|
|
|
|
<ImageButton android:id="@+id/button_market"
|
|
android:layout_width="48dip"
|
|
android:layout_height="48dip"
|
|
android:scaleType="fitCenter"
|
|
android:layout_gravity="center" />
|
|
|
|
<ImageView android:id="@+id/check"
|
|
android:layout_width="48dip"
|
|
android:layout_height="48dip"
|
|
android:scaleType="center"
|
|
android:layout_gravity="center"
|
|
android:src="@android:drawable/checkbox_on_background"/>
|
|
|
|
</LinearLayout>
|