package com.proto.toolsradio;
import android.app.Activity;
import android.os.Bundle;
import android.graphics.Color;
import android.widget.RadioButton;
import android.widget.RadioGroup;
import android.widget.TextView;
import android.widget.LinearLayout;
import android.view.View;
//import android.view.Window;
public class ToolsRadio extends Activity implements View.OnClickListener {
private final static int MatchParent=LinearLayout.LayoutParams.MATCH_PARENT;
private final static int WrapContent=LinearLayout.LayoutParams.WRAP_CONTENT;
// レイアウトの定義
LinearLayout layout;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
// setContentView(R.layout.main); 書き換え
// ウィンドウタイトルの非表示
// requestWindowFeature(Window.FEATURE_NO_TITLE);
// レイアウトの生成
// LinearLayout layout=new LinearLayout(this);
layout=new LinearLayout(this);
layout.setBackgroundColor(Color.WHITE); // 背景色の指定
layout.setOrientation(LinearLayout.VERTICAL); // HORIZONTAL, VERTICAL
setContentView(layout);
// テキストの生成
TextView txtView = new TextView(this);
txtView.setTextColor(Color.MAGENTA);
txtView.setTextSize(16f);
txtView.setText("ラジオボタン操作のチェック");
layout.addView(txtView,
new LinearLayout.LayoutParams(MatchParent,WrapContent));
//ラジオグループの生成
RadioGroup radioGroup=new RadioGroup(this);
// ラジオボタンの生成
RadioButton radioButton=new RadioButton(this);
radioButton.setId(0);
radioButton.setTextColor(Color.BLUE);
radioButton.setTextSize(22f);
radioButton.setOnClickListener(this);
radioButton.setText("選択1");
//ラジオグループに追加
radioGroup.addView(radioButton);
radioButton=new RadioButton(this);
radioButton.setId(1);
radioButton.setTextColor(Color.RED);
radioButton.setOnClickListener(this);
radioButton.setText("選択2");
//ラジオグループに追加
radioGroup.addView(radioButton);
// ラジオグループの指定(レイアウトに追加)
radioGroup.clearCheck();
//radioGroup.check(0);
layout.addView(radioGroup,
new LinearLayout.LayoutParams(WrapContent,WrapContent));
}
@Override
// ラジオボタンクリックの処理
public void onClick(View view) {
// ID情報の取得
int id=(Integer)view.getId();
// ラジオボタン情報の取得
// RadioButton radio=(RadioButton)view;
// テキストの生成
TextView txtView = new TextView(this);
txtView.setTextColor(Color.BLACK);
txtView.setTextSize(22f);
if (id==0) {
txtView.setText("選択1がクリックされました");
}else if (id==1) {
txtView.setText("選択2がクリックされました");
}
layout.addView(txtView,
new LinearLayout.LayoutParams(WrapContent,WrapContent));
}
}
|