2010-12-10 18:41:09 +00:00
|
|
|
<?xml version="1.0" encoding="ISO-8859-1"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:paddingLeft="6dp"
|
|
|
|
android:paddingRight="6dp"
|
|
|
|
android:paddingTop="0dp"
|
|
|
|
android:paddingBottom="0dp"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
2011-10-01 20:07:57 +00:00
|
|
|
<ImageView android:id="@+id/artwork"
|
|
|
|
android:gravity="center"
|
|
|
|
android:padding="2dp"
|
|
|
|
android:scaleType="center"
|
|
|
|
android:adjustViewBounds="false"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="fill_parent">
|
|
|
|
</ImageView>
|
2010-12-10 18:41:09 +00:00
|
|
|
<LinearLayout android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
<TextView android:id="@+id/title"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:focusable="true"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:textStyle="bold"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMediumInverse"
|
|
|
|
android:gravity="center"
|
|
|
|
android:paddingTop="0dp"
|
|
|
|
android:paddingLeft="6dp" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingLeft="3dp"
|
2011-10-01 20:07:57 +00:00
|
|
|
android:orientation="horizontal">
|
2010-12-10 18:41:09 +00:00
|
|
|
<TextView android:id="@+id/content"
|
|
|
|
android:layout_gravity="left"
|
|
|
|
android:scrollHorizontally="true"
|
|
|
|
android:maxLines="2"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmallInverse"
|
|
|
|
/>
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|