gpt4 book ai didi

android - 子背景属性覆盖父圆角背景

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:43:17 25 4
gpt4 key购买 nike

我使用包含 Clickable TextView 的 LinearLayout 创建了一个导航栏,对于包含的 LinearLayout 我设置了一个背景形状 XML 来创建圆角,问题是,当用户单击我设置为选项卡颜色背景的选项卡之一时,圆角覆盖,我在容器而不是选项卡中设置圆角的原因是因为左右语言\左右语言。

点击前

enter image description here

点击后

enter image description here

<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="match_parent"
android:background="@drawable/rounded_corners"
android:layout_height="40dp"
android:layout_margin="10dp">

<TextView
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:textColor="@color/registerButton"
android:gravity="center"
android:text="A"/>

<View
android:layout_width="1dp"
android:layout_height="match_parent"
android:background="@color/registerButton">
</View>

<TextView
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:gravity="center"
android:textColor="@color/registerButton"
android:text="B"/>

<View
android:layout_width="1dp"
android:layout_height="match_parent"
android:background="@color/registerButton">
</View>

<TextView
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:textColor="@color/registerButton"
android:gravity="center"
android:text="C"/>

<View
android:layout_width="1dp"
android:layout_height="match_parent"
android:background="@color/registerButton">
</View>

<TextView
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:textColor="@color/registerButton"
android:gravity="center"
android:text="D"/>

@drawable/rounded_corners

<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="#FFFFFF"/>
<stroke android:width="1dip" android:color="@color/registerButton" />
<corners android:radius="8dip"/>
<padding android:color="@color/registerButton"
android:left="0dip"
android:top="0dip"
android:right="0dip"
android:bottom="0dip" />
</shape>

最佳答案

首先,您必须为 TextView A 创建一个独特的选择器,您需要在选择器文件中设置角:

  <corners
android:bottomLeftRadius="5dp"
android:topLeftRadius="5dp">
</corners>

根据需要更改半径值

关于android - 子背景属性覆盖父圆角背景,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34672513/

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