android 使子视图遵循父布局圆角

cxfofazt  于 2022-11-20  发布在  Android
关注(0)|答案(1)|浏览(392)

我有一个圆角布局,它有一个内部没有角的子项,可以移动。当这个子项在一边时,它不尊重父项的圆角。
这就是我想要达到的目标:

这是我目前拥有的:

很抱歉第二张图片的质量不好,但你可以在这里看到,因为孩子的原因,边角不圆。
这是我正在使用的布局:

<androidx.constraintlayout.widget.ConstraintLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/bg_pill_selector_button_switch_parent">

    <FrameLayout
        android:layout_width="@dimen/no_width"
        android:layout_height="@dimen/no_width"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

    <com.mb.components.widget.MBLabel
        android:id="@+id/lbFirstButtonPillSelectorSwitch"
        style="@style/MBPillSelectorButtonSwitchText"
        android:layout_width="@dimen/no_width"
        android:layout_height="@dimen/no_width"
        android:background="@drawable/bg_pill_selector_button_switch_element"
        app:layout_constraintBottom_toTopOf="@+id/glPillSelectorSwitch"
        app:layout_constraintEnd_toStartOf="@+id/gl2PillSelectorSwitch"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        tools:text="Gastos" />

    <com.mb.components.widget.MBLabel
        android:id="@+id/lbSecondButtonPillSelectorSwitch"
        style="@style/MBPillSelectorButtonSwitchText"
        android:layout_width="@dimen/no_width"
        android:layout_height="@dimen/no_width"
        android:background="@drawable/bg_pill_selector_button_switch_element"
        app:layout_constraintBottom_toBottomOf="@+id/glPillSelectorSwitch"
        app:layout_constraintEnd_toStartOf="@+id/gl3PillSelectorSwitch"
        app:layout_constraintStart_toEndOf="@+id/gl2PillSelectorSwitch"
        app:layout_constraintTop_toTopOf="parent"
        tools:text="Ingresos" />

    <com.mb.components.widget.MBLabel
        android:id="@+id/lbThirdButtonPillSelectorSwitch"
        style="@style/MBPillSelectorButtonSwitchText"
        android:layout_width="@dimen/no_width"
        android:layout_height="@dimen/no_width"
        android:background="@drawable/bg_pill_selector_button_switch_element"
        app:layout_constraintBottom_toTopOf="@+id/glPillSelectorSwitch"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="@+id/gl3PillSelectorSwitch"
        app:layout_constraintTop_toTopOf="parent"
        tools:text="Otros" />

    <androidx.constraintlayout.widget.Guideline
        android:id="@+id/glPillSelectorSwitch"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        app:layout_constraintGuide_begin="@dimen/begin_guideline_pill_selector_button_switch" />

    <androidx.constraintlayout.widget.Guideline
        android:id="@+id/gl2PillSelectorSwitch"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        app:layout_constraintGuide_percent="0.33" />

    <androidx.constraintlayout.widget.Guideline
        android:id="@+id/gl3PillSelectorSwitch"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        app:layout_constraintGuide_percent="0.67" />

    <FrameLayout
        android:id="@+id/framePillSelectorSwitch"
        android:layout_width="@dimen/no_width"
        android:layout_height="@dimen/no_width"
        android:background="@drawable/bg_pill_selector_button_switch_selected"
        app:layout_constraintBottom_toTopOf="@+id/glPillSelectorSwitch"
        app:layout_constraintEnd_toStartOf="@+id/gl2PillSelectorSwitch"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
zbdgwd5y

zbdgwd5y1#

父视图没有圆角,任何视图都不会有圆角...视图始终为矩形,但可能有圆角可绘制背景集
在您的情况下,行中的第一个和最后一个项目也应该有圆角(左或右),在XML形状drawable中有一个这样的选项

<shape
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape=["rectangle" | "oval" | "line" | "ring"] >
    <corners
        android:radius="integer"
        android:topLeftRadius="integer"
        android:topRightRadius="integer"
        android:bottomLeftRadius="integer"
        android:bottomRightRadius="integer" />

因此,修改您bg_pill_selector_button_switch_element,制作额外的左侧和右侧版本(提示:不要设置radius,它用于一体机)

相关问题