gpt4 book ai didi

android - 滑动标签和工具栏之间的线

转载 作者:行者123 更新时间:2023-11-29 20:46:41 24 4
gpt4 key购买 nike

如何删除这一行:

enter image description here

我试图删除海拔:

<the.example.com.slidingtab.SlidingTabLayout
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:elevation="2dp"
android:background="@color/colorPrimary"/>

但我想要滑动标签下的阴影。

最佳答案

Elevation 是为 Android 5.0 API 级别 21 LOLLIPOP 定义的。我不知道你的目的是什么,但为了我的目的我会针对 pre-21 设备并在其上绘制阴影的 View (如果没有其他帮助,<FrameLayout...> 可以将其子级绘制在另一个之上)。

例如,horiz_line.xml

<View xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="2dip"
android:layout_width="match_parent"
android:background="#000000"
/>

使用自<LinearLayout ...>作为

<include layout="@layout/horiz_line"/>

绘制一条简单的水平线。如果您需要阴影,可以使用在透明背景上绘制深色阴影的 9 色 block 图像。

关于android - 滑动标签和工具栏之间的线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30209129/

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