gpt4 book ai didi

Android/Kotlin Material Button Group 默认选择

转载 作者:行者123 更新时间:2023-12-04 23:47:27 25 4
gpt4 key购买 nike

我在 fragment 布局中有一个 Material Button Toggle Group(需要单选和选择),但是在加载我的应用程序时,我希望已经选择了一个按钮。我想将此添加到我的主要 Activity 中 onCreate()会成功的(我的按钮的 id 是 paletteA ):

paletteA.isPressed = true
但相反,我的应用程序只是在加载时崩溃,并且“运行”窗口中没有显示任何错误。感觉有些东西没有及时加载或为空,即使我的所有 fragment 都已加载等等,这是我的 onCreate() 中的最后一件事.有任何想法吗?

最佳答案

MaterialButtonToggleGroup小部件有一个名为 app:checkedButton 的 XML 属性可用于在选中的组中加载按钮。
MaterialButtonToggleGroup 中设置特定按钮要加载为默认选中状态,请将要检查的按钮的 id 作为值传递给 app:checkedButton属性。

<com.google.android.material.button.MaterialButtonToggleGroup
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:singleSelection="true"
android:id="@+id/activity_main_togglebutton"
app:checkedButton="@id/activity_main_button2">

关于Android/Kotlin Material Button Group 默认选择,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66465576/

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