You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
829 B
24 lines
829 B
11 years ago
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:id="@+id/menu_navigation"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content" >
|
||
|
|
||
|
<ImageView
|
||
|
android:id="@+id/imageView2"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_alignParentTop="true"
|
||
|
android:layout_toRightOf="@+id/imageView1"
|
||
|
android:src="@drawable/ic_action_forward" />
|
||
|
|
||
|
<ImageView
|
||
|
android:id="@+id/imageView1"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_alignParentTop="true"
|
||
|
android:layout_centerHorizontal="true"
|
||
|
android:src="@drawable/ic_action_back" />
|
||
|
|
||
|
</RelativeLayout>
|