我在选项卡小部件上有5个按钮,左侧2个和右侧2个与tabwidget的背景大小相同。中央按钮需要比tabwidget高两倍。

如果我将所有按钮都放在tabhost中,tabhost的大小将等于最大的按钮(中央按钮)。
怎么预防呢?

我想做这样的事情。标签栏的背景高度必须等于红场的高度。

最佳答案

是的,您可以按照以下Xml代码进行操作-

center_tab_indicator.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="0dip"
    android:layout_height="65dip"
    android:layout_weight="1"
    android:orientation="vertical"
    android:background="@drawable/center_tab_indicator"
    android:padding="5dp">

    <ImageView android:id="@+id/icon"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:src="@drawable/camera"
        android:scaleType="center"/>

</RelativeLayout>


tab_indicator.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="0dip"
    android:layout_height="55dip"
    android:layout_weight="1"
    android:orientation="vertical"
    android:layout_marginTop="10sp"
    android:background="@drawable/tab_indicator"
    android:padding="5dp">

    <ImageView android:id="@+id/icon"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:src="@drawable/icon" />

    <TextView android:id="@+id/title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true"
        style="?android:attr/tabWidgetStyle"
    />
</RelativeLayout>


通过使用以上两种XML,您可以获得所需的输出。有关更多信息,请查看here,您将得到如下所示的输出-



看一看。还将提供示例项目。希望对您有帮助。

关于android - 使tabwidget的子对象大于tabwidget,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12952032/

10-12 04:34