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.
35 lines
1.2 KiB
XML
35 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="80dp"
|
|
android:background="@drawable/border"
|
|
>
|
|
|
|
<!-- icon -->
|
|
<ImageView
|
|
android:id="@+id/item_icon"
|
|
android:layout_width="64dp"
|
|
android:layout_height="64dp"
|
|
android:layout_alignParentLeft="true"
|
|
android:layout_marginLeft="8dp"
|
|
android:layout_marginRight="8dp"
|
|
android:layout_marginTop="1dp"
|
|
android:layout_marginBottom="1dp"
|
|
android:contentDescription="icon"
|
|
android:src="@drawable/ic_launcher"
|
|
/>
|
|
|
|
<!-- title -->
|
|
<TextView
|
|
android:id="@+id/item_title"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_toRightOf="@+id/item_icon"
|
|
android:layout_alignBaseline="@+id/item_icon"
|
|
android:textColor="@android:color/darker_gray"
|
|
android:layout_marginLeft="8dp"
|
|
android:layout_marginRight="8dp"
|
|
android:layout_marginTop="8dp"
|
|
android:textSize="22dp" />
|
|
|
|
</RelativeLayout> |