gpt4 book ai didi

android - 使用选项卡时 FrameLayout 的顶部边框

转载 作者:行者123 更新时间:2023-11-29 00:48:51 25 4
gpt4 key购买 nike

我的 android 应用程序中有一个使用选项卡的屏幕。在选项卡小部件和框架布局之间显示一条线(如边框)​​。我想摆脱那条线,但似乎找不到它是什么。通过将其可见性设置为消失,我确定它是 FrameLayout 的一部分。请引用以下代码:

<?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"
android:background="#fb8c10"
>

<ImageView
android:id="@+id/img_confirm_header"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:src="@drawable/confirm_header"
/>

<TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="0dip"
android:background="#fb8c10"
android:tabStripEnabled="false"
/>

<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/tab_bg"
/>
</LinearLayout>
</TabHost>

这是当前布局和我正在尝试做的事情的链接 http://img441.imageshack.us/g/screenshot20110116at513.png/

橙色布局是我的应用程序,灰色是我想要做的。

请注意灰色屏幕截图中选项卡如何流入框架。

为链接道歉,我还不能发布图片:p

谢谢!

最佳答案

我设法通过使用相对布局操纵 z-index 来解决这个问题。我能够将选项卡稍微放在框架布局上。引用以下代码:

<?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"
android:background="#fb8c10"
>
<ImageView
android:id="@+id/img_confirm_header"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:src="@drawable/tab_header"

/>
<RelativeLayout
android:id="@+id/widget77"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@android:color/transparent"
>
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@android:color/transparent"
android:layout_marginTop="33dip"
/>
<TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#fb8c10"
android:tabStripEnabled="true"
android:layout_above="@android:id/tabcontent"
android:layout_marginBottom="40dip"
/>
</RelativeLayout>
</LinearLayout>
</TabHost>

关于android - 使用选项卡时 FrameLayout 的顶部边框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4704635/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com