35 lines
1.3 KiB
XML
35 lines
1.3 KiB
XML
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@drawable/background"
|
|
android:keepScreenOn="true" >
|
|
|
|
<ImageView
|
|
android:id="@+id/btn_settings"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentLeft="true"
|
|
android:layout_alignParentTop="true"
|
|
android:src="@drawable/transparent_button"
|
|
android:contentDescription="@string/app_name" />
|
|
|
|
<ImageButton
|
|
android:id="@+id/btn_previous"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentLeft="true"
|
|
android:layout_centerVertical="true"
|
|
android:src="@drawable/previous_button"
|
|
android:contentDescription="@string/app_name" />
|
|
|
|
<ImageButton
|
|
android:id="@+id/btn_next"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_centerVertical="true"
|
|
android:src="@drawable/next_button"
|
|
android:contentDescription="@string/app_name" />
|
|
|
|
</RelativeLayout> |