PageRenderTime 25ms CodeModel.GetById 18ms app.highlight 6ms RepoModel.GetById 1ms app.codeStats 0ms

/res/layout/user_profile.xml

https://bitbucket.org/jonny_evans/comp4020project
XML | 28 lines | 26 code | 2 blank | 0 comment | 0 complexity | 5d869c2dbf4d397fb04f5dd7ffce21fc MD5 | raw file
 1<?xml version="1.0" encoding="utf-8"?>
 2<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
 3android:id="@android:id/tabhost"
 4    android:layout_width="fill_parent"
 5    android:layout_height="fill_parent">
 6    <LinearLayout
 7        android:orientation="vertical"
 8        android:layout_width="fill_parent"
 9        android:layout_height="fill_parent">
10
11        <TextView
12            android:id="@+id/textUser"
13            android:layout_width="wrap_content"
14            android:layout_height="wrap_content"
15            android:padding="10dp"
16            android:text="@string/lblUser"
17		/>
18
19        <TabWidget
20            android:id="@android:id/tabs"
21            android:layout_width="fill_parent"
22            android:layout_height="wrap_content" />
23        <FrameLayout
24            android:id="@android:id/tabcontent"
25            android:layout_width="fill_parent"
26            android:layout_height="fill_parent"/>
27    </LinearLayout>
28</TabHost>