2014年9月17日 星期三

android程式設計實例入門 -Sample改寫分享 (2014/09/18)

android程式設計實例入門 -Sample改寫分享 (2014/09/18)


 


此範例為程式碼(04\Sample4)的改寫,利用一個LinearLayout、一個TextView和兩個CheckBox實作GUI界面,並且實作CheckBox事件反應範例,程式碼如下所示:


 


package com.jashsample;

import android.os.Bundle;
import android.app.Activity;
import android.graphics.Color;
import android.graphics.Typeface;
import android.view.KeyEvent;
import android.view.Menu;
import android.view.MotionEvent;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.View.OnTouchListener;
import android.widget.Button;
import android.widget.CheckBox;
import android.widget.CompoundButton;
import android.widget.CompoundButton.OnCheckedChangeListener;
import android.widget.LinearLayout;
import android.widget.TableLayout;
import android.widget.TableRow;
import android.widget.TextView;
/*
 * CheckBox反應事件
 */
public class MainActivity extends Activity {
TextView tv;
CheckBox cb1, cb2;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
LinearLayout ll = new LinearLayout(this);
ll.setOrientation(LinearLayout.VERTICAL);
setContentView(ll);

tv = new TextView(this);
tv.setText("歡迎光臨。");

cb1 = new CheckBox(this);
cb2 = new CheckBox(this);
cb1.setText("汽車");
cb2.setText("卡車");

ll.addView(tv);
ll.addView(cb1);
ll.addView(cb2);

cb1.setOnCheckedChangeListener(new SampleCheckedChangeListener());
cb2.setOnCheckedChangeListener(new SampleCheckedChangeListener());

}
class SampleCheckedChangeListener implements OnCheckedChangeListener
{
public void onCheckedChanged(CompoundButton cb, boolean isChecked)
{
if(isChecked == true)
{
tv.setText("我要買" + cb.getText() + "。");
}
else if(isChecked == false)
{
tv.setText("我不買" + cb.getText() + "了。");
}
}
}
public boolean onKeyDown(int keycode, KeyEvent e)//直接在Activity上實作KeyDown事件
{
String str="";
switch(keycode)
{
case KeyEvent.KEYCODE_DPAD_UP:
str = "上";
break;
case KeyEvent.KEYCODE_DPAD_DOWN:
str = "下";
break;
case KeyEvent.KEYCODE_DPAD_LEFT:
str = "左";
break;
case KeyEvent.KEYCODE_DPAD_RIGHT:
str = "右";
break;
case KeyEvent.KEYCODE_DPAD_CENTER:
str = "中央";
break;
default:
str = "其他按鍵";
}
tv.setText("��" + str + "。");

return true;
}
public boolean onTouchEvent(MotionEvent e)//直接在Activity上實作Touch事件
{
if(e.getAction() == MotionEvent.ACTION_DOWN)//設定在畫面任何地方Touch都改變tv文字
{
tv.setText("您好再見");
}
else if(e.getAction() == MotionEvent.ACTION_UP)
{
tv.setText("再見您好");
}
return true;
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
class SampleTouchListener implements OnTouchListener
{
public boolean onTouch(View v, MotionEvent e)
{
if(e.getAction() == MotionEvent.ACTION_DOWN)
{
tv.setText("您好");
}
else if(e.getAction() == MotionEvent.ACTION_UP)
{
tv.setText("再見");
}
return true;
}
}
class SampleClickListener implements OnClickListener//按鈕事件反應類別
{
public void onClick(View v)
{
tv.setText("謝謝惠顧。");
}
}
}


 




沒有留言:

張貼留言