bashgid/android/res/layout/photo_page_element.xml

51 lines
1.9 KiB
XML
Raw Normal View History

2015-06-23 05:16:52 +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"
android:layout_height="match_parent"
android:gravity="center_vertical"
2015-06-23 05:16:52 +00:00
android:orientation="vertical" >
2015-06-25 19:00:11 +00:00
<ScrollView
android:id="@+id/scrollView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fadingEdge="none"
android:fillViewport="true" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<fishrungames.bashgid.DynamicImageView
android:id="@+id/image"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:cropToPadding="false"
android:scaleType="centerCrop" />
<TextView
android:id="@+id/titleTextView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="@dimen/large_margin"
2015-06-25 19:00:11 +00:00
android:text="TextView"
android:textSize="@dimen/xlarge_text_size"
2015-06-25 19:00:11 +00:00
android:textStyle="bold" />
<TextView
android:id="@+id/descriptionTextView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/large_margin"
android:layout_marginRight="@dimen/large_margin"
android:text="TextView"
android:textSize="@dimen/medium_text_size" />
2015-06-25 19:00:11 +00:00
</LinearLayout>
</ScrollView>
2015-06-23 05:16:52 +00:00
</LinearLayout>