gpt4 book ai didi

java - 在多 fragment View 页面中检索错误选择的单选按钮

转载 作者:行者123 更新时间:2023-12-01 06:09:44 25 4
gpt4 key购买 nike

我长期潜伏在尝试学习 Android 编码(使用 Android Studio)。到目前为止,我仅通过谷歌搜索就解决了所有问题。但现在我真的很绝望,所以我希望有人能帮助我。

我正在尝试编写测验代码:我使用 ViewPager 创建多个 fragment (此处为 5 个)。第一个 fragment (StartView.java) 只是一些文本显示,其中包含一个开始测验的按钮。以下 fragment 都有相同的布局,只是问题不同。所以我只使用一种布局(QuestionView.java 和fragment_view1.xml)。每个 fragment 都有 5 个单选按钮,分组在一个单选组中。此外,还有一个按钮用于前进到下一个 fragment 。单击此按钮时,将检索按下的单选按钮的文本并将其传递回主 Activity 。

简而言之我的问题:代码运行时没有错误(在我的 Samsung Galaxy Nexus 上),但代码未检索正确选择的 RadioButton。第一个 QuestionView fragment 确实为我提供了所选单选按钮的值。但对于下一个 QuestionView fragment ,我总是从上一个 fragment 中获取选定的单选按钮。

对观察到的行为的更详细描述:(A) 我运行程序并按下开始测验按钮(在 fragment #0 上,即 StartView)。在 QuestionView fragment (F#1) 的以下实例中,我选择一个单选按钮,例如编号 1。当我按下“下一个”按钮时,该编号将打印在 logcat 中(“问题 View - 文本 1”,正确)行为)。(B) 所以我前进到下一个 fragment (F#2),我再次选择一个 RadioButton,比如编号 3。但是当我按下该按钮时,上一个 fragment 的 RadioButton 会打印在logcat(即:logcat 读取“问题 View - 文本 1”,而不是数字 3。)(C) 在下一个 fragment (F#3) 中,选择单选按钮后(例如数字 5) )并按“下一步”按钮,上一个 fragment (#2)中的数字将打印在 logcat 中(“问题 View - 文本 3”,我期望数字 5)。因此检索到的编号始终是前一个 fragment 的编号。

我希望我充分描述了我的问题。当我解释得不好时,请不要犹豫告诉我 - 英语不是我的母语,而且解释得更少:)。

非常感谢您,我感谢您的努力。

这是代码:

MainActivity.java

public class MainActivity extends FragmentActivity
implements QuestionView.OnDataPass{

private ViewPager viewPager;
private MyAdapter pageAdapter;
private static final int ITEMS = 5;



@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

if (findViewById(R.id.pager) != null) {
if (savedInstanceState != null) {
return;
}
viewPager = (ViewPager)findViewById(R.id.pager);
pageAdapter = new MyAdapter(getSupportFragmentManager());
viewPager.setAdapter(pageAdapter);
}
}


@Override
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.menu_main, menu);
return true;
}

public static class MyAdapter extends FragmentPagerAdapter {
private Fragment[] tabList = new Fragment[ITEMS];
public MyAdapter(FragmentManager fragmentManager) {
super(fragmentManager);
}

@Override
public int getCount() {
return ITEMS;
}


@Override
public Fragment getItem(int i) {
if (tabList[i] != null) {
return tabList[i];
} else {
switch (i) {
case 0:
tabList[0] = StartView.newInstance("Introduction screen");
return tabList[0];
case 1:
tabList[1] = QuestionView.newInstance("Question 1");
return tabList[1];
case 2:
tabList[2] = QuestionView.newInstance("Question 2");
return tabList[2];
case 3:
tabList[3] = QuestionView.newInstance("Question 3");
return tabList[3];
case 4:
tabList[4] = QuestionView.newInstance("Question 4");
return tabList[4];
}
}
return null ;
}
}

@Override
public void WorkData(String data) {
Log.d("LOG", " Activity - TEXT " + data);
}}

QuestionView.java

public class QuestionView extends Fragment {

OnDataPass dataPasser;

private TextView firstText;
private Button btn;
RadioGroup rgOpinion;
ViewPager viewPager;

public interface OnDataPass {
public void WorkData(String data);
}

public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.fragment_view1, container, false);
firstText = (TextView) view.findViewById(R.id.viewOneText);
firstText.setText(getArguments().getString("msg"));

btn = (Button) view.findViewById(R.id.viewOneBtn);
viewPager = (ViewPager) getActivity().findViewById(R.id.pager);

btn.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
rgOpinion = (RadioGroup) getActivity().findViewById(R.id.radioGroup);
RadioButton selected = (RadioButton) getActivity().findViewById(rgOpinion.getCheckedRadioButtonId());
String text = selected.getText().toString();
Log.d("LOG", " Question view - TEXT " +text);
dataPasser.WorkData(text);
viewPager.setCurrentItem(viewPager.getCurrentItem() + 1, true);
}

});
return view;
}

public static QuestionView newInstance(String text) {
QuestionView f = new QuestionView();
Bundle b = new Bundle();
b.putString("msg", text);
f.setArguments(b);
return f;
}

@Override
public void onAttach(Context context) {
super.onAttach(context);
dataPasser = (OnDataPass) context;
}
}

fragment_view1.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="match_parent">

<ImageView
android:id="@+id/image"
android:layout_width = "fill_parent"
android:layout_height= "fill_parent"
android:src="@drawable/hintergrundbild"
android:scaleType="fitXY"
android:adjustViewBounds="true">
</ImageView>


<Button
android:background="@drawable/red_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="weiter..."
android:id="@+id/viewOneBtn"
style="@style/button_text"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:layout_alignParentEnd="true" />

<TextView
android:id="@+id/viewOneText"
android:layout_width="match_parent"
android:layout_height="48dp"
android:layout_alignParentTop="true"
android:background="#3f51b5"
android:gravity="center_vertical"
android:paddingLeft="10dp"
android:text="MY PAGE TITLE"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textColor="#fff" />

<RadioGroup
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/radioGroup"
android:layout_alignTop="@id/viewOneText"
android:layout_centerHorizontal="true"
android:layout_marginTop="53dp">
<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="1"
android:id="@+id/radBut1"
android:layout_above="@+id/radioButtonAnimationMovies"
android:layout_alignLeft="@+id/radioButtonAnimationMovies"
android:layout_alignStart="@+id/radioButtonAnimationMovies"
android:checked="false" />
<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="2"
android:id="@+id/radBut2"
android:layout_centerVertical="true"
android:layout_centerHorizontal="true"
android:checked="false" />
<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="3"
android:id="@+id/radBut3"
android:layout_below="@+id/radioButtonAnimationMovies"
android:layout_alignLeft="@+id/radioButtonAnimationMovies"
android:layout_alignStart="@+id/radioButtonAnimationMovies"
android:checked="false" />
<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="4"
android:id="@+id/radBut4"
android:layout_below="@+id/radioButtonHorrorMovies"
android:layout_alignLeft="@+id/radioButtonHorrorMovies"
android:layout_alignStart="@+id/radioButtonHorrorMovies"
android:checked="false" />
<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="5"
android:id="@+id/radBut5"
android:layout_below="@+id/radioButtonComedyMovies"
android:layout_alignLeft="@+id/radioButtonComedyMovies"
android:layout_alignStart="@+id/radioButtonComedyMovies"
android:checked="false" />
</RadioGroup>

<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignBottom="@+id/radioGroup"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_marginLeft="449dp"
android:layout_marginStart="449dp"></FrameLayout>


</RelativeLayout>

最佳答案

而不是使用 getActivity(),它将在整个 Activity (不仅仅是当前 fragment )上查找 Id

rgOpinion = (RadioGroup) getActivity().findViewById(R.id.radioGroup);
RadioButton selected = (RadioButton) getActivity().findViewById(rgOpinion.getCheckedRadioButtonId());

尝试使用您之前在 onCreateview() 上定义的 View ,如下所示

rgOpinion = (RadioGroup) view.findViewById(R.id.radioGroup);
RadioButton selected = (RadioButton) view.findViewById(rgOpinion.getCheckedRadioButtonId());

关于java - 在多 fragment View 页面中检索错误选择的单选按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37098433/

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