2013-03-12 18:49:30 +00: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"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:background="@drawable/button"
|
|
|
|
android:clickable="false"
|
|
|
|
>
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/title"
|
2013-08-04 22:53:54 +00:00
|
|
|
android:clickable="false"
|
2013-03-12 18:49:30 +00:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
2013-08-04 22:53:54 +00:00
|
|
|
android:maxLines="1"
|
2013-03-12 18:49:30 +00:00
|
|
|
android:textColor="#000000"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
|
|
android:paddingLeft="6dip"
|
2013-09-07 03:24:47 +00:00
|
|
|
android:paddingTop="2dip"/>
|
2013-10-25 22:56:23 +00:00
|
|
|
|
2013-03-12 18:49:30 +00:00
|
|
|
<TextView
|
2013-10-25 22:56:23 +00:00
|
|
|
android:id="@+id/url"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:clickable="false"
|
|
|
|
android:maxLines="1"
|
|
|
|
android:paddingBottom="2dip"
|
|
|
|
android:paddingLeft="6dip"
|
|
|
|
android:paddingTop="2dip"
|
|
|
|
android:textColor="@color/light" />
|
|
|
|
|
2013-03-12 18:49:30 +00:00
|
|
|
</LinearLayout>
|