asdasdas

<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
	android:id="@android:id/tabhost" android:layout_width="fill_parent"
	android:layout_height="fill_parent">
	<LinearLayout android:orientation="vertical"
		android:layout_width="fill_parent" android:layout_height="fill_parent">

		<TabWidget android:id="@android:id/tabs"
			android:layout_width="fill_parent" android:layout_height="wrap_content" />
		<FrameLayout android:id="@android:id/tabcontent"
			android:layout_width="wrap_content" android:layout_height="fill_parent">
			<ScrollView android:padding="10dip" android:id="@+id/nightElf" android:layout_width="fill_parent" android:layout_height="wrap_content" android:scrollbars="none">
				<TableLayout android:id="@+id/nightElfTbl" android:layout_width="fill_parent" android:layout_height="fill_parent"
					android:stretchColumns="0">
					<TableRow android:layout_marginBottom="5dip">
						<ImageView android:src="@drawable/archer" style="@style/iconStyle" />
						<Button android:id="@+id/ready" android:text="Ready"
							style="@style/buttonStyle"></Button>
						<Button android:id="@+id/what" android:text="What"
							style="@style/buttonStyle"></Button>
						<Button android:id="@+id/yes" android:text="Yes"
							style="@style/buttonStyle"></Button>
						<Button android:id="@+id/death" android:text="Death"
							style="@style/buttonStyle"></Button>
						<Button android:id="@+id/special" android:text="Special"
							style="@style/buttonStyle"></Button>
					</TableRow>
					</TableLayout>
			</ScrollView>
			<TextView android:id="@+id/human" android:layout_width="fill_parent"
				android:layout_height="fill_parent" android:text="@string/human" />

			<TextView android:id="@+id/orc" android:layout_width="fill_parent"
				android:layout_height="fill_parent" android:text="@string/orc" />

			<TextView android:id="@+id/undead" android:layout_width="fill_parent"
				android:layout_height="fill_parent" android:text="@string/undead" />
		</FrameLayout>
	</LinearLayout>
</TabHost>

你可能感兴趣的:(java,xml)