gpt4 book ai didi

android - fragment 中的单选按钮 findViewById

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:56:52 31 4
gpt4 key购买 nike

为了让 findViewById 在我的 Fragment 中工作,我环顾四周并实现了一些我发现的东西。但是,我得到无法解析方法 findViewById 或得到“Unreachable Statement”。我不完全确定哪里出错了。

这是我的 fragment 的代码。

import android.app.Fragment;
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.RadioGroup;

/**
* Created by James Singleton on 8/8/2016.
*/

public class SettingsFragment extends Fragment
{
View myView;

@Nullable
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
myView = inflater.inflate(R.layout.settings_layout, container, false);
return myView;

RadioGroup radioGroup = (RadioGroup) getView().findViewById(R.id.radioGroup);

radioGroup.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener()
{
public void onCheckedChanged(RadioGroup group, int checkedId) {
// checkedId is the RadioButton selected

switch(checkedId) {
case R.id.radioButton7:
// switch to fragment 1
break;
case R.id.radioButton6:
// Fragment 2
break;
}
}
});
}
}

这是我的布局代码

<?xml version="1.0" encoding="utf-8"?>

<TextView
android:text="Use Cell Data to retrieve driving data:"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/textView"
android:textSize="18sp"
android:textColor="@color/cast_expanded_controller_background_color"
android:layout_alignParentTop="true"
android:layout_alignParentStart="true" />

<RadioGroup
android:layout_width="89dp"
android:layout_height="69dp"
android:weightSum="1"
android:layout_below="@+id/textView"
android:id="@+id/radioGroup">

<RadioButton
android:text="Enable"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/radioButton7"
android:layout_weight="1" />

<RadioButton
android:text="Disable"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/radioButton6"
android:layout_weight="1"
android:checked="true" />
</RadioGroup>

最佳答案

像这样更改您的代码:

@Nullable
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
myView = inflater.inflate(R.layout.settings_layout, container, false);


RadioGroup radioGroup = (RadioGroup) myView .findViewById(R.id.radioGroup);

radioGroup.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener()
{
public void onCheckedChanged(RadioGroup group, int checkedId) {
// checkedId is the RadioButton selected

switch(checkedId) {
case R.id.radioButton7:
// switch to fragment 1
break;
case R.id.radioButton6:
// Fragment 2
break;
}
}
});

return myView;
}

关于android - fragment 中的单选按钮 findViewById,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38910323/

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