45 lines
1.5 KiB
XML
45 lines
1.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="4dp"
|
|
android:background="@color/bkg1"
|
|
android:orientation="horizontal"
|
|
android:paddingBottom="4dp"
|
|
android:paddingTop="4dp"
|
|
android:showDividers="middle" >
|
|
|
|
<ImageButton
|
|
android:id="@+id/imageButton"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_margin="6dp"
|
|
android:background="@drawable/transparent"
|
|
android:src="@drawable/transparent_button"
|
|
android:contentDescription="@string/news_content_description" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical" >
|
|
|
|
<Button
|
|
android:id="@+id/button"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:background="@drawable/transparent_button"
|
|
android:gravity="left|center_vertical"
|
|
android:minHeight="0dip"
|
|
android:minWidth="0dip"
|
|
android:textColor="@color/text_grey" />
|
|
|
|
<TextView
|
|
android:id="@+id/dateTextView"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content" />
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|