标签 - 不使用TabHost

时间:2013-09-28 10:17:58

标签: android

我想开发像附加图片这样的标签。但是,不要为此使用Tabhost。任何帮助都是高度赞赏的。enter image description here

以下是使用的XML:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="50dp"
    android:background="#0C3666"
    android:orientation="horizontal"
    android:weightSum="1.0" >

    <TextView
        android:id="@+id/news_text"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_weight="0.25"
        android:background="@drawable/tab_drawable"
        android:clickable="true"
        android:gravity="center"
        android:padding="10dp"
        android:text="NEWS"
        android:textColor="@color/main_white"
        android:textSize="14dp" />

    <TextView
        android:id="@+id/quotes_text"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_weight="0.25"
        android:background="@drawable/tab_drawable"
        android:clickable="true"
        android:gravity="center"
        android:padding="10dp"
        android:text="QUOTES"
        android:textColor="@color/main_white"
        android:textSize="14dp" />

    <TextView
        android:id="@+id/editor_text"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_weight="0.25"
        android:background="@drawable/tab_drawable"
        android:clickable="true"
        android:gravity="center"
        android:padding="10dp"

        android:textColor="@color/main_white"
        android:textSize="14dp" />

    <TextView
        android:id="@+id/st_text"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_weight="0.25"
        android:background="@drawable/tab_drawable"
        android:gravity="center"
        android:padding="10dp"
        android:text="ST"
        android:textColor="@color/main_white"
        android:textSize="14dp" />

</LinearLayout>

以上是布局。我想知道如何绘制separtor线“|”选项卡之间。

1 个答案:

答案 0 :(得分:0)

将带有条形图的ImageView添加为您想要条形图的背景