summaryrefslogtreecommitdiffstats
path: root/app/src/main/res/layout/image_preference.xml
blob: 09b449ab27f2e8bcd854f5bb4c6e10d4dcfe45ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@android:id/widget_frame"
    android:layout_width="match_parent"
    android:layout_height="?android:attr/listPreferredItemHeight"
    android:orientation="vertical" >

    <ImageView
        android:id="@+id/image"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:src="@drawable/purple"
        android:scaleType="centerInside"/>
</LinearLayout>