Java学习者论坛

 找回密码
 立即注册

QQ登录

只需一步,快速开始

手机号码,快捷登录

恭喜Java学习者论坛(https://www.javaxxz.com)已经为数万Java学习者服务超过8年了!积累会员资料超过10000G+
成为本站VIP会员,下载本站10000G+会员资源,购买链接:点击进入购买VIP会员
JAVA高级面试进阶视频教程Java架构师系统进阶VIP课程

分布式高可用全栈开发微服务教程

Go语言视频零基础入门到精通

Java架构师3期(课件+源码)

Java开发全终端实战租房项目视频教程

SpringBoot2.X入门到高级使用教程

大数据培训第六期全套视频教程

深度学习(CNN RNN GAN)算法原理

Java亿级流量电商系统视频教程

互联网架构师视频教程

年薪50万Spark2.0从入门到精通

年薪50万!人工智能学习路线教程

年薪50万!大数据从入门到精通学习路线年薪50万!机器学习入门到精通视频教程
仿小米商城类app和小程序视频教程深度学习数据分析基础到实战最新黑马javaEE2.1就业课程从 0到JVM实战高手教程 MySQL入门到精通教程
查看: 491|回复: 0

Q&A: RadioButton随机排序问题,急!困扰我n天了都,求大

[复制链接]

该用户从未签到

发表于 2011-10-22 17:37:57 | 显示全部楼层 |阅读模式
程序如下:

Qstart.java/////////////////////

package dan.danart;
import java.lang.reflect.Array;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Iterator;
import java.util.List;
import java.util.Random;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.TextView;
import android.widget.RadioButton;
import android.widget.RadioGroup;
import android.widget.Toast;

public class Qstart extends Activity{
        private TextView shitsumon = null;
        private TextView question = null;
        private TextView choice = null;
        private RadioGroup radiogroup = null;
    private RadioButton radioButton1 = null;
    private RadioButton radioButton2 = null;
    private RadioButton radioButton3 = null;
    private RadioButton radioButton4 = null;
    private Button judge = null;

        @Override
        public void onCreate(Bundle savedInstanceState) {
                super.onCreate(savedInstanceState);
                setContentView(R.layout.qstart);

                List<Integer> c = new ArrayList<Integer>();
                c.add(R.id.radioButton1);
                c.add(R.id.radioButton2);
                c.add(R.id.radioButton3);
                c.add(R.id.radioButton4);

                Collections.shuffle(c,new Random());

                question = (TextView)findViewById(R.id.question);
                radiogroup = (RadioGroup)findViewById(R.id.radiogroup);

                radioButton1 = (RadioButton)findViewById(c.get(0));
                radioButton2 = (RadioButton)findViewById(c.get(1));
                radioButton3 = (RadioButton)findViewById(c.get(2));
                radioButton4 = (RadioButton)findViewById(c.get(3));

                judge = (Button)findViewById(R.id.judge);
                judge.setOnClickListener(new judgeListener());

                radiogroup.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {
                        public void onCheckedChanged(RadioGroup group, int checkedId) {
                                if(radioButton1.getId() == checkedId){
                                        Toast.makeText(Qstart.this,"1",Toast.LENGTH_SHORT).show();
                                }
                                else if(radioButton2.getId() == checkedId){
                                        Toast.makeText(Qstart.this,"2",Toast.LENGTH_SHORT).show();
                                }
                                else if(radioButton3.getId() == checkedId){
                                        Toast.makeText(Qstart.this,"3",Toast.LENGTH_SHORT).show();
                                }
                                else if(radioButton4.getId() == checkedId){
                                        Toast.makeText(Qstart.this,"4",Toast.LENGTH_SHORT).show();
                                }
                        }
                });
        }

        class judgeListener implements OnClickListener{

                public void onClick(View v) {
                        Intent intent = new Intent();
                        String seikai = radioButton1.getText().toString();
                        intent.putExtra("two", seikai);
                        if(radioButton1.isChecked()){
                                String sentaku = radioButton1.getText().toString();
                                intent.putExtra("one",sentaku);
                        }if(radioButton2.isChecked()){
                                String sentaku = radioButton2.getText().toString();
                                intent.putExtra("one",sentaku);
                        }if(radioButton3.isChecked()){
                                String sentaku = radioButton3.getText().toString();
                                intent.putExtra("one",sentaku);
                        }if(radioButton4.isChecked()){
                                String sentaku = radioButton4.getText().toString();
                                intent.putExtra("one",sentaku);
                        }

                        intent.setClass(Qstart.this,answer.class);
                        Qstart.this.startActivity(intent);
                        Qstart.this.finish();
                }
        }
}

qstart.xml////////////////

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:background="@android:color/white"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
    <TextView
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:text="@string/shitsumon"
            android:id="@+id/shitsumon"
            android:textColor="#0066ff"
                android:textSize="25px">
    </TextView>
        <TextView
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:text="@string/question"
                android:layout_below="@+id/shitsumon"
                android:id="@+id/question">
        </TextView>
        <TextView
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:text="@string/choice"
                android:layout_below="@+id/question"
                android:id="@+id/choice"
            android:textColor="#0066ff"
                android:textSize="25px">
        </TextView>
    <RadioGroup android:id="@+id/radiogroup"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        androidrientation="vertical"
                android:layout_below="@+id/choice"
        >
                <RadioButton
                        android:text="@string/RadioButton1"
                    android:textColor="#000000"
                        android:id="@+id/radioButton1"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content">
                </RadioButton>
                <RadioButton
                        android:text="@string/RadioButton2"
                        android:textColor="#000000"
                        android:id="@+id/radioButton2"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content">
                </RadioButton>
                <RadioButton
                        android:text="@string/RadioButton3"
                        android:textColor="#000000"
                        android:id="@+id/radioButton3"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content">
                </RadioButton>
                <RadioButton
                        android:text="@string/RadioButton4"
                        android:textColor="#000000"
                        android:id="@+id/radioButton4"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content">
                </RadioButton>
        </RadioGroup>
        <Button
                android:text="@string/judge"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentRight="true"
                android:layout_below="@+id/radiogroup"
                android:id="@+id/judge">
        </Button>
</RelativeLayout>

执行模拟器后id的顺序虽然改变了,但是xml文件中的layout的位置指定显示1。2。3。4的顺序
怎么让界面上的按钮也改变顺序?
这个问题困扰我好多时间了
求大大们帮帮我吧
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|手机版|Java学习者论坛 ( 声明:本站资料整理自互联网,用于Java学习者交流学习使用,对资料版权不负任何法律责任,若有侵权请及时联系客服屏蔽删除 )

GMT+8, 2025-1-9 20:57 , Processed in 0.306812 second(s), 36 queries .

Powered by Discuz! X3.4

© 2001-2017 Comsenz Inc.

快速回复 返回顶部 返回列表