project64/Android/res/layout/gallery_item_adapter.xml

24 lines
935 B
XML
Raw Normal View History

2016-06-09 09:46:46 +00:00
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:background="@android:drawable/list_selector_background"
android:focusable="true"
android:id="@+id/galleryItem"
android:layout_width="match_parent"
android:layout_height="wrap_content"
2016-06-09 09:46:46 +00:00
android:padding="@dimen/galleryHalfSpacing"
android:orientation="vertical">
2016-06-09 09:46:46 +00:00
<LinearLayout
android:id="@+id/info"
android:layout_width="@dimen/galleryImageWidth"
2016-09-17 03:17:51 +00:00
android:layout_height="wrap_content"
2016-06-09 09:46:46 +00:00
android:orientation="horizontal" >
<TextView
android:id="@+id/text1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
2016-06-09 09:46:46 +00:00
android:text="@string/galleryItemAdapter_dummyText"
android:textAppearance="?android:attr/textAppearanceSmall" />
</LinearLayout>
</LinearLayout>