37 lines
No EOL
1.3 KiB
XML
37 lines
No EOL
1.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:padding="4dp"
|
|
android:orientation="horizontal"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<ImageView
|
|
android:id="@+id/image"
|
|
android:layout_width="64dp"
|
|
android:layout_height="64dp"
|
|
android:src="@drawable/twitter"/>
|
|
|
|
<LinearLayout
|
|
android:paddingLeft="4dp"
|
|
android:paddingRight="4dp"
|
|
android:layout_weight="1"
|
|
android:orientation="vertical"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content">
|
|
|
|
<TextView
|
|
style="@android:style/TextAppearance.Medium"
|
|
android:id="@+id/handle"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1"/>
|
|
|
|
<TextView
|
|
android:id="@+id/tweet"
|
|
style="@android:style/TextAppearance.Small"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1"/>
|
|
</LinearLayout>
|
|
</LinearLayout> |