gpt4 book ai didi

android - 复选框安卓不工作

转载 作者:行者123 更新时间:2023-11-29 20:19:46 26 4
gpt4 key购买 nike

Textview 应该在选中复选框时可见。然而,这并没有发生。当我点击复选框时,它会被选中但 texview 不会出现。我已将 textview 的可见性设置为在 XML 中消失。但是,当复选框被选中时,我将其设置为 VISIBLE。

View footer = inflater.inflate(R.layout.footer, viewGroup,
false);


final CheckBox chb = (CheckBox) footer.findViewById(R.id.notify_confirm);
final TextView notify_tv = (TextView) footer.findViewById(R.id.notify_tv);



chb.setOnClickListener(new OnClickListener() {

@Override
public void onClick(View v) {

if (chb.isChecked())
{
//new CheckBoxThread().execute();
notify_tv.setVisibility(View.VISIBLE);

}
else
{

}

}

});

XML:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:paddingLeft="6dp"
android:orientation="vertical"
android:background="#ffffff"
>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:visibility="visible"

>

<CheckBox
android:id="@+id/notify_confirm"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:text="Notify on Confirmation"
android:textColor="#4d4d4d"
android:paddingLeft="5dp"
android:visibility="visible"

/>
<TextView
android:id = "@+id/notify_tv"
android:layout_width="fill_parent"
android:textColor = "@color/myPrimaryColor"
android:gravity="center"
android:visibility="gone"
android:layout_height="wrap_content"
android:text="You will be notified on confirmation"></TextView>

</LinearLayout>
</LinearLayout>

问这个问题对我来说可能有点天真,但我已经尝试了所有方法,但它似乎不起作用。

最佳答案

不使用 OnClickListener ,而是对复选框使用 OnCheckedChangeListener 。如下所示替换您的代码。

chb.setOnCheckedChangeListener(new OnCheckedChangeListener()
{
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked)
{
if ( isChecked )
{
// perform logic
notify_tv.setVisibility(View.VISIBLE);
}

}
});

关于android - 复选框安卓不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33383943/

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