android RadioRealButton:如何实现复杂的布局?

时间:2018-12-11 13:59:12

标签: android radio-button

我需要一个RadioRealButtonGROUP(库:https://github.com/ceryle/RadioRealButton) 第一行有三个按钮,第二行有两个按钮。 我将如何实施呢? 如果将LinearLayout放在RadioRealButton内,则按钮将不再可单击。

1 个答案:

答案 0 :(得分:0)

为什么要在其中放置LinearLayout?我认为您应该将Buttons包装在LinearLayout中

编辑:

您可以使用RadioRealButtonGroup对按钮进行分组,这是示例代码

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">
<!-- First Row -->
    <co.ceryle.radiorealbutton.RadioRealButtonGroup
        android:id="@+id/radioRealButtonGroup"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:rrbg_animateDrawables_enter="overshoot"
        app:rrbg_animateTexts_enter="overshoot"
        app:rrbg_dividerColor="@android:color/black"
        app:rrbg_dividerSize="1dp"
        app:rrbg_radius="10dp"
        app:rrbg_selectorColor="@android:color/holo_red_dark"
        app:rrbg_selectorSize="6dp">

        <co.ceryle.radiorealbutton.RadioRealButton
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            app:rrb_drawable="@mipmap/ic_launcher"
            app:rrb_drawableHeight="36dp"
            app:rrb_drawablePadding="8dp"
            app:rrb_drawableWidth="36dp"
            app:rrb_ripple="true"
            app:rrb_rippleColor="@android:color/black"
            app:rrb_text="Button 1"
            app:rrb_textColor="@android:color/black" />

        <co.ceryle.radiorealbutton.RadioRealButton
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            app:rrb_drawable="@mipmap/ic_launcher"
            app:rrb_drawableGravity="right"
            app:rrb_drawableHeight="36dp"
            app:rrb_drawablePadding="8dp"
            app:rrb_drawableWidth="36dp"
            app:rrb_ripple="true"
            app:rrb_rippleColor="@android:color/black"
            app:rrb_text="Button 2"
            app:rrb_textColor="@android:color/black" />

        <co.ceryle.radiorealbutton.RadioRealButton
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            app:rrb_drawable="@mipmap/ic_launcher"
            app:rrb_drawableGravity="right"
            app:rrb_drawableHeight="36dp"
            app:rrb_drawablePadding="8dp"
            app:rrb_drawableWidth="36dp"
            app:rrb_ripple="true"
            app:rrb_rippleColor="@android:color/black"
            app:rrb_text="Button 2"
            app:rrb_textColor="@android:color/black" />
    </co.ceryle.radiorealbutton.RadioRealButtonGroup>

    <!-- Second Row -->
    <co.ceryle.radiorealbutton.RadioRealButtonGroup
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="8dp"
        app:layout_constraintTop_toBottomOf="@+id/radioRealButtonGroup"
        app:rrbg_animateDrawables_enter="overshoot"
        app:rrbg_animateTexts_enter="overshoot"
        app:rrbg_dividerColor="@android:color/black"
        app:rrbg_dividerSize="1dp"
        app:rrbg_radius="10dp"
        app:rrbg_selectorColor="@android:color/holo_red_dark"
        app:rrbg_selectorSize="6dp">

        <co.ceryle.radiorealbutton.RadioRealButton
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            app:rrb_drawable="@mipmap/ic_launcher"
            app:rrb_drawableHeight="36dp"
            app:rrb_drawablePadding="8dp"
            app:rrb_drawableWidth="36dp"
            app:rrb_ripple="true"
            app:rrb_rippleColor="@android:color/black"
            app:rrb_text="Button 1"
            app:rrb_textColor="@android:color/black" />

        <co.ceryle.radiorealbutton.RadioRealButton
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            app:rrb_drawable="@mipmap/ic_launcher"
            app:rrb_drawableGravity="right"
            app:rrb_drawableHeight="36dp"
            app:rrb_drawablePadding="8dp"
            app:rrb_drawableWidth="36dp"
            app:rrb_ripple="true"
            app:rrb_rippleColor="@android:color/black"
            app:rrb_text="Button 2"
            app:rrb_textColor="@android:color/black" />
    </co.ceryle.radiorealbutton.RadioRealButtonGroup>

</LinearLayout>

如果这解决了您的问题,请标记此答案