gpt4 book ai didi

android - 如何在 Material 按钮上写多行文本?

转载 作者:行者123 更新时间:2023-12-04 01:32:39 24 4
gpt4 key购买 nike

我需要制作一个多行文字 Material 按钮。
我关注了this问题的答案,但事实证明 Material 按钮的工作方式不同。

<com.google.android.material.button.MaterialButtonToggleGroup
android:id="@+id/toggle_parent_child"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="16dp"
android:layout_marginEnd="16dp"
android:theme="@style/Theme.MaterialComponents"
android:visibility="gone"
app:checkedButton="@id/button_parent"
app:singleSelection="true">

<com.google.android.material.button.MaterialButton
android:id="@+id/button_parent"
style="@style/Login.Button.ToggleButton"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Parent\n Device" />

<com.google.android.material.button.MaterialButton
android:id="@+id/button_child"
style="@style/Login.Button.ToggleButton"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Child \n Device" />

我得到这个:

image

但我需要每个单词都在不同的行中,如下所示:

image

最佳答案

可能为时已晚,但这是我修复它的实现

class MonsterButtonToggleGroup : MaterialButtonToggleGroup {

constructor(context: Context) : super(context)
constructor(context: Context, attrs: AttributeSet?) : super(context, attrs)
constructor(context: Context, attrs: AttributeSet?, defStyleAttr: Int) : super(context, attrs, defStyleAttr)


override fun addView(child: View?, index: Int, params: ViewGroup.LayoutParams?) {
super.addView(child, index, params)
if (child is MaterialButton)
child.maxLines = 2
}

}

关于android - 如何在 Material 按钮上写多行文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60614434/

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