package com.proto.toolsbutton;
import android.app.Activity;
import android.graphics.Color;
import android.os.Bundle;
import android.widget.Button;
import android.widget.TextView;
import android.widget.LinearLayout;
import android.view.View;
//import android.view.Window;
public class ToolsButton extends Activity implements View.OnClickListener {
// ボタン形状(大きさ)の定数
private final static int MatchParent=LinearLayout.LayoutParams.MATCH_PARENT;
private final static int WrapContent=LinearLayout.LayoutParams.WRAP_CONTENT;
//ボタンの生成
private Button makeButton(String text,String tag,String params) {
Button button=new Button(this);
button.setText(text);
button.setTag(tag);
button.setOnClickListener(this);
if (params == "MATCH") {
button.setLayoutParams(
new LinearLayout.LayoutParams(MatchParent,WrapContent));
} else {
button.setLayoutParams(
new LinearLayout.LayoutParams(WrapContent,WrapContent));
}
return button;
}
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// ウィンドウタイトルの非表示
// requestWindowFeature(Window.FEATURE_NO_TITLE);
// setContentView(R.layout.main);書き換え
// レイアウトの生成
LinearLayout 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));
// ボタンの生成
/* (layout.addView(button,
newLinearLayout.LayoutParams(WRAP_CONTENT,WRAP_CONTENT));) */
layout.addView(makeButton("ボタン表示を赤に","0","MATCH"));
layout.addView(makeButton("ボタン表示を緑に","1","WRAP"));
layout.addView(makeButton("ボタン表示を黄色に","2","WRAP"));
layout.addView(makeButton("ボタン表示を青に","3","WRAP"));
layout.addView(makeButton("ボタン表示を水色に","4","MATCH"));
}
// ボタンクリックの処理
public void onClick(View view) {
// タグ情報の取得
int tag=Integer.parseInt((String)view.getTag());
Button b = (Button)view;
// b.setText("ボタン・クリック");
if (tag==0) {
b.setTextColor(Color.RED);
}
else if (tag==1) {
b.setTextColor(Color.GREEN);
}
else if (tag==2) {
b.setTextColor(Color.YELLOW);
}
else if (tag==3) {
b.setTextColor(Color.BLUE);
}
else if (tag==4) {
b.setTextColor(Color.CYAN);
}
}
}
|