bashgid/android/res/layout/grid_page_list_element.xml

32 lines
1.1 KiB
XML
Raw Normal View History

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-08 00:11:08 +00:00
<fishrungames.bashgid.SquareImageView
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"
android:layout_margin="@dimen/medium_margin"
2015-05-22 18:07:16 +00:00
android:text="dsdsd"
2015-07-08 00:11:08 +00:00
android:textSize="@dimen/small_text_size"
2015-05-22 18:07:16 +00:00
android:textStyle="bold" />
2015-05-22 18:07:16 +00:00
</LinearLayout>