以下是我的XML布局。我试图左对齐唯一的标签,如下图所示(图像有2个标签,但我想以它只有#34; FOCUSED &#34的方式对齐它;没有" 其他"标签)
Message_List.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:orientation="horizontal"
tools:context="x.x.x.MessageActivity">
<TabHost
android:id="@+id/tabHostMessage"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TabWidget
android:id="@android:id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="left"
android:gravity="left"
></TabWidget>
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="match_parent"
android:layout_height="match_parent">
<RelativeLayout
android:id="@+id/tabMedication"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="30dp"
android:orientation="vertical">
<ListView
android:id="@+id/msgListView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin">
</ListView>
<TextView
android:id="@+id/noMessage"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:text="No Messages"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textStyle="bold"
android:visibility="invisible" />
</RelativeLayout>
</FrameLayout>
</LinearLayout>
</TabHost>
</RelativeLayout>
目前,我只有一个标签,它位于中间,左右各有空格。