2017-06-20 17:29:06 -04:00
|
|
|
<?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:background="#fff">
|
|
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
|
android:id="@+id/imageView"
|
2017-06-21 22:11:09 -04:00
|
|
|
android:layout_width="@dimen/image_width"
|
|
|
|
|
android:layout_height="@dimen/image_width"
|
2017-06-20 17:29:06 -04:00
|
|
|
android:layout_marginLeft="10dp"
|
|
|
|
|
android:padding="5dp"
|
|
|
|
|
android:src="@drawable/ic_launcher" />
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/textView"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_gravity="center"
|
|
|
|
|
android:text="Demo"
|
|
|
|
|
android:textColor="#000" />
|
|
|
|
|
</LinearLayout>
|