blob: 3063b66f26f1001e802972e0260e97708e32f490 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="48dip"
android:background="@drawable/topbar_background"
android:id="@+id/settings_headbar_layout" >
<!-- ImageButton
android:id="@+id/settings_btn_back"
android:layout_width="110dip"
android:layout_height="40dip"
android:layout_marginLeft="0dip"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:background="@drawable/navigation_back"/-->
<TextView
android:id="@+id/settings_headbar_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="30dip"
android:textColor="@android:color/white"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:layout_marginRight="40dip"
android:text="@string/settings"/>
</RelativeLayout>
|