- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我长期潜伏在尝试学习 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/
是否有某种方法可以使用 JPA 或 Hibernate Crtiteria API 来表示这种 SQL?或者我应该将其作为 native 执行吗? SELECT A.X FROM (SELECT X,
在查询中, select id,name,feature,marks from (....) 我想删除其 id 在另一个 select 语句中存在的那些。 从 (...) 中选择 id 我是 sql
我想响应用户在 select 元素中选择一个项目。然而这个 jQuery: $('#platypusDropDown').select(function () { alert('You sel
这个问题在这里已经有了答案: SQL select only rows with max value on a column [duplicate] (27 个回答) 关闭8年前。 我正在学习 SQL
This question already has answers here: “Notice: Undefined variable”, “Notice: Undefined index”, and
我在 php 脚本中调用 SQL。有时“DE”中没有值,如果是这种情况我想从“EN”中获取值 应该是这样的,但不是这样的 IF (EXISTS (SELECT epf_application_deta
这可能是一个奇怪的问题,但不知道如何研究它。执行以下查询时: SELECT Foo.col1, Foo.col2, Foo.col3 FROM Foo INNER JOIN Bar ON
如何在使用 Camera.DestinationType.FILE_URI. 时在 phonegap camera API 中同时选择或拾取多个图像我能够一次只选择一张图像。我可以使用 this 在
这是一个纯粹的学术问题。这两个陈述实际上是否相同? IF EXISTS (SELECT TOP 1 1 FROM Table1) SELECT 1 ELSE SELECT 0 相对 IF EXIS
我使用 JSoup 来解析 HTML 响应。我有多个 Div 标签。我必须根据 ID 选择 Div 标签。 我的伪代码是这样的 Document divTag = Jsoup.connect(link
我正在处理一个具有多个选择框的表单。当用户从 selectbox1 中选择一个选项时,我需要 selectbox2 active 的另一个值。同样,当他选择 selectbox2 的另一个值时,我需要
Acme Inc. Christa Woods Charlotte Freeman Jeffrey Walton Ella Hubbard Se
我有一个login.html其中form定义如下: First Initial Plus Last Name : 我的do_authorize如下: "; pri
$.get( 'http://www.ufilme.ro/api/load/maron_online/470', function(data
我有一个下拉列表“磅”、“克”、“千克”和“盎司”。我想要这样一种情况,当我选择 gram 来执行一个函数时,当我在输入字段中输入一个值时,当我选择 pounds 时,我想要另一个函数来执行时我在输入
我有一个 GLSL 着色器,它从输入纹理的 channel 之一(例如 R)读取,然后写入输出纹理中的同一 channel 。该 channel 必须由用户选择。 我现在能想到的就是使用一个 int
我想根据下拉列表中的选定值生成输入文本框。 Options 2 3 4 5 就在这个选择框之后,一些输入字段应该按照选定的数字出现。 最佳答案 我建议您使用响应式(Reac
我是 SQL 新手,我想问一下如何根据首选项和分组选择条目。 +----------+----------+------+ | ENTRY_ID | ROUTE_ID | TYPE | +------
我有以下表结构: CREATE TABLE [dbo].[UTS_USERCLIENT_MAPPING_USER_LIST] ( [MAPPING_ID] [int] IDENTITY(1,1
我在移除不必要的床单时遇到了问题。我查看了不同的论坛并将不同的解决方案混合在一起。 此宏删除工作表(第一张工作表除外)。 Sub wrong() Dim sht As Object Applicati
我是一名优秀的程序员,十分优秀!