| 12345678910111213141516171819202122232425262728293031323334353637 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="horizontal"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content">
- <ImageView
- android:layout_width="88dp"
- android:layout_height="fill_parent"
- android:id="@+id/photo"
- android:scaleType="fitStart"
- android:src="@drawable/Icon" />
- <LinearLayout
- android:layout_width="0dp"
- android:layout_weight="1"
- android:layout_height="fill_parent"
- android:orientation="vertical"
- android:padding="8dp">
- <TextView
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:textAppearance="?android:attr/textAppearanceMedium"
- android:text="Name"
- android:id="@+id/name" />
- <TextView
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:textAppearance="?android:attr/textAppearanceSmall"
- android:text="Time"
- android:id="@+id/time" />
- <TextView
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:textAppearance="?android:attr/textAppearanceSmall"
- android:text="Tweet Here and it is really long because that is how tweets are they are never over 140 characters though and that is important to know."
- android:id="@+id/tweet" />
- </LinearLayout>
- </LinearLayout>
|