2015-05-22 18:07:16 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:id="@+id/LinearLayout1"
|
|
|
|
android:layout_width="match_parent"
|
2015-07-05 11:03:52 +00:00
|
|
|
android:layout_height="wrap_content"
|
2015-06-25 19:00:11 +00:00
|
|
|
android:layout_gravity="center_vertical"
|
2015-05-22 18:07:16 +00:00
|
|
|
android:background="@color/bkg1"
|
2015-06-25 19:00:11 +00:00
|
|
|
android:gravity="center_vertical"
|
2015-05-22 18:07:16 +00:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:showDividers="middle" >
|
|
|
|
|
2015-07-06 00:44:07 +00:00
|
|
|
<ImageView
|
2015-05-22 18:07:16 +00:00
|
|
|
android:id="@+id/imageView"
|
2015-06-25 19:00:11 +00:00
|
|
|
android:layout_width="match_parent"
|
2015-07-05 11:03:52 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
2015-06-25 19:00:11 +00:00
|
|
|
android:adjustViewBounds="true"
|
|
|
|
android:cropToPadding="false"
|
|
|
|
android:scaleType="centerCrop" />
|
2015-05-22 18:07:16 +00:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/nameTextView"
|
2015-07-05 11:03:52 +00:00
|
|
|
android:layout_width="match_parent"
|
2015-05-22 18:07:16 +00:00
|
|
|
android:layout_height="wrap_content"
|
2015-07-05 11:03:52 +00:00
|
|
|
android:layout_gravity="clip_vertical"
|
2015-07-02 22:36:06 +00:00
|
|
|
android:layout_margin="@dimen/medium_margin"
|
2015-05-22 18:07:16 +00:00
|
|
|
android:text="dsdsd"
|
2015-07-02 22:36:06 +00:00
|
|
|
android:textSize="@dimen/large_text_size"
|
2015-05-22 18:07:16 +00:00
|
|
|
android:textStyle="bold" />
|
2015-07-02 22:36:06 +00:00
|
|
|
|
2015-05-22 18:07:16 +00:00
|
|
|
</LinearLayout>
|