1<?xml version="1.0" encoding="utf-8"?>
2<FrameLayout
3    xmlns:android="http://schemas.android.com/apk/res/android"
4    android:layout_width="wrap_content"
5    android:layout_height="wrap_content">
6    <ImageView
7        android:layout_width="wrap_content"
8        android:layout_height="wrap_content"
9        android:id="@+id/imageview" />
10    <LinearLayout
11        android:orientation="horizontal"
12        android:layout_width="wrap_content"
13        android:layout_height="match_parent">
14        <Button
15            android:id="@+id/randomize"
16            android:layout_width="wrap_content"
17            android:layout_height="wrap_content"
18            android:text="@string/randomize"
19            android:layout_gravity="bottom" />
20        <Button
21            android:id="@+id/setwallpaper"
22            android:layout_width="wrap_content"
23            android:layout_height="wrap_content"
24            android:text="@string/set_wallpaper"
25            android:layout_gravity="bottom" />
26    </LinearLayout>
27</FrameLayout>
28