[转]android学习----基础UI编程(四)

  • CheckBox 的使用
  • RadioButton 的使用

12. CheckBox 的使用

1)通过只含有一个CheckBox的实例来学习CheckBox的使用

示例代码

① 创建新工程
② 在string.xml 中添加字符串

<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">Ex_Ctrl_4</string>
<string name="advice">请勾选我同意</string>
<string name="accept">您已接受同意!!</string>
<string name="Notaccept">您未同意!!</string>
<string name="allOK">全部许可</string>
</resources>

③ 修改main.xml 布局,添加UI 元素

……

<CheckBox
android:layout_height="wrap_content"

android:layout_width="120px"
android:layout_marginTop="100px"
android:layout_marginLeft="90px"
android:id="@+id/CheckBox_Accept" >

</CheckBox>

……
④ 修改mainActivity.java 文件

package zyf.Ex_Ctrl_4;
import android.app.Activity;
import android.graphics.Color;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.CheckBox;
import android.widget.TextView;

public class Ex_Ctrl_4 extends Activity {
    // Called when the activity is first created.
    private TextView showAdvice,yourChoiceshow;
    private CheckBox iAccept;
    private Button ok;

@Override
   public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
       //findViewById()从资源ID获取资源对象
        showAdvice=(TextView)findViewById(R.id.TextView_Guide);
        yourChoiceshow=(TextView)findViewById(R.id.TextView_youChoiceShow );
        iAccept=(CheckBox)findViewById(R.id.CheckBox_Accept);
        ok=(Button)findViewById(R.id.Button_OK);
        //获取XML中字符串
        CharSequence titleString=getString(R.string.allOK);
        //设置复选框标题
        iAccept.setHint(titleString);
       //设置复选框标题字体颜色
        iAccept.setHintTextColor(Color.RED);
        //将CheckBox设置成未选中
        iAccept.setChecked(false);
        //将Button设置成不可用

ok.setEnabled(false);

iAccept.setOnClickListener(new CheckBox.OnClickListener(){
            @Override
            public void onClick(View v) {
                // TODO Auto-generated method stub
                if(iAccept.isChecked()){
                    ok.setEnabled(true);
                    yourChoiceshow.setText(R.string.accept);
                }else{
                    ok.setEnabled(false);
                    yourChoiceshow.setText(R.string.Notaccept);
                }
            }
        });

ok.setOnClickListener(new Button.OnClickListener(){
            @Override
            public void onClick(View v) {
                // TODO Auto-generated method stub
               if(iAccept.isChecked()){
                    showAdvice.setText(R.string.accept);
                }
            }
        });
    }
}

⑤ 结果

关键点

1. CheckBox 的 isChecked() 方法

public abstract boolean isChecked ()

返回值:The current checked state of the view 。当前CheckBox的状态 True:选中 False:未选

2. CheckBox 的 setChecked() 方法

public abstract void setChecked (boolean checked)

作用:修改 CheckBox 的状态

参数:The new checked state .

3. Button 的 setEnabled() 方法

public void setEnabled (boolean enabled)

作用:设置 view 的使能状态

参数:view 的新使能状态 True 使能 False 禁用

2)含多个CheckBox 的实例

示例代码

① 新建工程
② 在string.xml 中添加字符串
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">Ex_Ctrl_5</string>
<string name="shoopingList_TextView_text" >网上购物商品清单</string>
<string name="yourChocieWoods_text" >您选择购买的商品:</string>
<string name="woods_Text_MP4">纽曼MP4</string>
<string name="woods_Text_musicCD">Beyond乐队CD</string>
<string name="woods_Text_book">Android程序员指南</string>
</resources>

③ 修改main.xml 布局,添加UI 元素

……

<CheckBox
android:layout_height="wrap_content"
android:id="@+id/CheckBox_MP4"
android:text="@string/woods_Text_MP4"
android:layout_width="180px">

</CheckBox>
<CheckBox
android:layout_height="wrap_content"
android:text="@string/woods_Text_musicCD"
android:id="@+id/CheckBox_musicCD"
android:layout_width="180px">

</CheckBox>
<CheckBox
android:layout_height="wrap_content"
android:text="@string/woods_Text_book"
android:id="@+id/CheckBox_book"
android:layout_width="180px">

</CheckBox>

……

④ 修改mainActivity.java,添加逻辑判断

package zyf.Ex_Ctrl_5;
import android.app.Activity;
import android.os.Bundle;
import android.widget.CheckBox;
import android.widget.CompoundButton;
import android.widget.TextView;
import android.widget.CompoundButton.OnCheckedChangeListener;

public class Ex_Ctrl_5 extends Activity {
    //Called when the activity is first created.

private TextView showyourChoice_TextView;
    private CheckBox mp4_CheckBox, musicCD_CheckBox, book_CheckBox;
    private String showinfo;

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

// findViewById()从XML中获取资源对象
        showyourChoice_TextView = (TextView)
        findViewById(R.id.TextView_yourWoodsList );
        mp4_CheckBox = (CheckBox) findViewById(R.id.CheckBox_MP4);
        musicCD_CheckBox = (CheckBox) findViewById(R.id.CheckBox_musicCD);
        book_CheckBox = (CheckBox) findViewById(R.id.CheckBox_book );

//为三个CheckBox设置选择状态改变事件监听器
        mp4_CheckBox.setOnCheckedChangeListener(CheckedChangeListener);
        musicCD_CheckBox.setOnCheckedChangeListener(CheckedChangeListener);
        book_CheckBox.setOnCheckedChangeListener(CheckedChangeListener);

//从XML中获取显示信息String
        showinfo = getString(R.string.yourChocieWoods_text );
    }

// 内部接口实现
    private OnCheckedChangeListener CheckedChangeListener = new OnCheckedChangeListener() {
        @Override
        public void onCheckedChanged(CompoundButton buttonView,boolean isChecked) {
            // TODO Auto-generated method stub
            // 处理选中状态改变事件,动态显示选择结果
            if (mp4_CheckBox.isChecked()) {
                showinfo = getString(R.string.woods_Text_MP4) + "\n";
                showString();
            } else if (musicCD_CheckBox.isChecked()) {
                showinfo = getString(R.string.woods_Text_musicCD) + "\n";
                showString();
            } else if (book_CheckBox.isChecked()) {
                showinfo = getString(R.string.woods_Text_book ) + "\n";
                showString();
            } if (
                mp4_CheckBox.isChecked() && musicCD_CheckBox.isChecked()) {
                showinfo = getString(R.string.woods_Text_MP4) + "\n"
                + getString(R.string.woods_Text_musicCD ) + "\n";
                showString();
            } else if (mp4_CheckBox.isChecked() && book_CheckBox.isChecked()) {
                showinfo = getString(R.string.woods_Text_MP4) + "\n"
                + getString(R.string.woods_Text_book ) + "\n";
                showString();
            } else if (musicCD_CheckBox.isChecked() && book_CheckBox.isChecked()) {
                showinfo = getString(R.string.woods_Text_musicCD) + "\n"
                + getString(R.string.woods_Text_book ) + "\n";
                showString();
            } if (mp4_CheckBox.isChecked() && musicCD_CheckBox.isChecked() && book_CheckBox.isChecked()) {
                showinfo = getString(R.string.woods_Text_MP4) + "\n"
                + getString(R.string.woods_Text_musicCD ) + "\n"
                + getString(R.string.woods_Text_book ) + "\n";
                showString();
            } if (mp4_CheckBox.isChecked() == false && musicCD_CheckBox.isChecked() == false
&& book_CheckBox.isChecked() == false) {
                showyourChoice_TextView.setText("");
            }
        }

public void showString() {
            showyourChoice_TextView.setText(showinfo);
        }

};
}

⑤ 结果

关键点

1. setOnCheckedChangeListener

public void setOnCheckedChangeListener (CompoundButton.OnCheckedChangeListener listener)

作用:

Register a callback to be invoked when the checked state of this button changes

参数:

listener :the callback to call on checked state change .

13. RadioButton 单选

1)RadioGroup 组与 onCheckedChanged 事件

示例代码

① 新建工程
② string.xml 中添加字符串
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">Ex_Ctrl_6</string>
<string name="iam_Boy">帅哥</string>
<string name="iamGirl">美女</string>
<string name="ask">请问你是??</string>
</resources>

③ 修改mian.xml 布局,添加UI 元素
……

<TextView …… >

</TextView>

<RadioGroup
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/RadioGroup">
    <RadioButton
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:id="@+id/RadioButton_Boy"
    android:text="@string/iam_Boy"></RadioButton>
   <RadioButton
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/iamGirl"
    android:id="@+id/RadioButton_Gril"></RadioButton>
</RadioGroup>

……

④ 修改mainActivity.java 文件
package zyf.Ex_Ctrl_6;
import android.app.Activity;
import android.os.Bundle;
import android.widget.RadioButton;
import android.widget.RadioGroup;
import android.widget.TextView;

public class Ex_Ctrl_6 extends Activity {
    // Called when the activity is first created.
    private TextView answer_TextView;
    private RadioButton boy_RadioButton,girl_RadioButton;
    private RadioGroup radioGroup;
    @Override

public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        // findViewById()从XML中获取资源对象
        answer_TextView=(TextView)findViewById(R.id.TextView_Ask_And_Show);
        radioGroup=(RadioGroup)findViewById(R.id.RadioGroup);
        boy_RadioButton=(RadioButton)findViewById(R.id.RadioButton_Boy );
        girl_RadioButton=(RadioButton)findViewById(R.id.RadioButton_Gril);

//给单RadioGroup添加状态改变监听器
        radioGroup.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener(){
            @Override
           public void onCheckedChanged(RadioGroup group, int checkedId) {
               // TODO Auto-generated method stub
               if(boy_RadioButton.isChecked()){
                    answer_TextView.setText(R.string.iam_Boy);
                }else{
                    answer_TextView.setText(R.string.iamGirl);
                }
            }
       });
    }
}

⑤ 结果

关键点

1. RadioGroup

参看上例中的 xml 布局文件 和 使用方法.

2. onCheckedChanged 事件

public abstract void onCheckedChanged (CompoundButton buttonView, boolean isChecked)

抽象方法,需要工程师自己实现。当 check状态 改变时,会被调用。

参数:

buttonView :The compound button view whose state has changed.

isChecked :The new checked state of buttonView

时间: 2024-10-06 23:20:41

[转]android学习----基础UI编程(四)的相关文章

[转]android学习----基础UI编程(六)

相簿浏览 Gallery 文件搜索引擎FileSearch 17. Gallery 与 衍生BaseAdapter 容器 Gallery控件,即Android的图片库控件. 需要定义一个BaseAdaper的子类(eg.ImageAdapter)来操作控制图片资源,然后在主类中通过Gallery.setAdapter(new ImageAdapter(this));来使用这个控制类. 示例代码 本例中 ImageView 和 Gallery 控件相互协作 . ① 新建项目 ② 定义layout

[转]android学习----基础UI编程(七)

自动完成输入框 AutoCompleteTextView 多内容自动完成输入框 19. AutoCompleteTextView 自动完成输入框 智能输入框 AutoCompleteTextView 1. 简介 一个可编辑的文本视图显示自动完成建议当用户键入.建议列表显示在一个下拉菜单,用户可以从中选择一项,以完成输入.建议列表是从一个数据适配器获取的数据. 2. 重要方法 clearListSelection():清除选中的列表项 dismissDropDown():如果存在关闭下拉菜单 ge

[转]android学习----基础UI编程(八)

模拟/数字/线程小时钟设计 动态输入日期与时间 日期设置/时间设置对话框 21. 模拟/数字/线程小时钟设计 AnalogClock 与DigitalClock 的原理,以及线程时钟的实现 . 示例代码 ① 新建工程② 修改man.xml 布局,添加一个AnalogClock.一个DigitalClock.一个TextView<TextView  //这个TextView 用来显示线程时钟    android:id="@+id/TextView_showTime"    and

[转]android学习----基础UI编程(五)

相框设计 :ImageView 的堆叠作用 相框设计 :ImageButton 的堆叠作用 自定义下拉菜单 :Spinner 与setDropDownViewResource 动态添加╱删除的Spinner 菜单 : ArrayList 与Widget 的依赖性 14. 专业相框设计 1)ImageView 的堆叠应用 利用 ImageView 的堆叠,将上例中的实现不同相框的更换 示例代码 ① 新建工程② 准备三张png 图片 ③ 修改main.xml 布局,添加UI 元素 <?xml ver

[转]android学习----基础UI编程(三)

9. Toast--Android 专属浮动小提示 下例中,实现在一个EditView中输入一段话后,点击Button,Toast显示这段话. 示例代码: ① 新建工程② 在string.xml 中添加字符串 <?xml version="1.0" encoding="utf-8"?>    <resources>        <string name="app_name">EX_Ctrl_3</str

[转]android学习----基础UI编程(二)

7. TextView 和 EditView 共舞 预达到效果:在EditText中输入同时TextView进行输出 //前提:在main.xml中添加EditText 和 TextView控件 核心代码示例: public class EX_Ctrl_1 extends Activity {    private TextView mTextView01;    private EditText mEditText01;    // Called when the activity is fi

[转]android学习----基础UI编程(一)

1 通过 DisplayMetrics 类获取屏幕宽高 示例代码: package zyp.Activity; import android.app.Activity;import android.os.Bundle;import android.widget.*;import android.util.*; public class Test extends Activity {    //Called when the activity is first created. private T

[转]android学习----消息机制

一. 角色描述 1. Looper : 一个线程可以产生一个Looper对象,由它来管理此线程里的Message Queue(消息队列). 2. Handler : 你可以构造Handler对象来与Looper沟通,以便push新消息到Message Queue里:或者接收Looper(从Message Queue取出)所送来的消息. 3. Message Queue(消息队列) : 用来存放线程放入的消息. 4. 线程 :UI thread通常就是main thread,而Android启动程

[转]android学习总结----Activity view

什么是Activity? Activity 是用户接口程序,原则上它会提供给用户一个交互式的接口功能. 它是 android 应用程序的基本功能单元. Activity 本身是没有界面的 什么是view/ viewGroups? view/ viewGroups :表示在 android 平台上的基本用户界面单元. view :为指定的屏幕矩形区域存储布局和内容.处理尺寸和布局,绘制,焦点改变,翻屏,按键 等… viewGroups:包含并管理下级系列的views 和 下级的 viewGroup