萬盛學電腦網

 萬盛學電腦網 >> 網絡編程 >> 安卓開發 >> 安卓按鈕Button技巧介紹

安卓按鈕Button技巧介紹

大家知道安卓按鈕Button技巧嗎?下面我們就給大家詳細介紹一下吧!

  1. public class ButtonActivity extends Activity {
  2.  
  3.     Context mContext = null;
  4.     @Override
  5.     protected void onCreate(Bundle savedInstanceState) {
  6.         setContentView(R.layout.buttonview);
  7.         mContext = this;
  8.  
  9.         //普通按鈕
  10.         Button button0 = (Button)findViewById(R.id.buttonview0);
  11.         
  12.         //設置按鈕文字顏色
  13.         button0.setTextColor(Color.BLUE);
  14.         //設置按鈕文字大小
  15.         button0.setTextSize(30);
  16.         
  17.         //設置按鈕監聽 點擊事件
  18.         button0.setOnClickListener(new OnClickListener() {
  19.             
  20.             @Override
  21.             public void onClick(View arg0) {
  22.                 Toast.makeText(ButtonActivity.this, "您點擊了‘這是一個按鈕’", Toast.LENGTH_LONG).show();
  23.                 
  24.             }
  25.         });
  26.         
  27.         //帶圖片的按鈕
  28.         ImageButton button1 = (ImageButton)findViewById(R.id.buttonview1);
  29.         //設置按鈕監聽 點擊事件
  30.         button1.setOnClickListener(new OnClickListener() {
  31.             
  32.             @Override
  33.             public void onClick(View arg0) {
  34.                 Toast.makeText(ButtonActivity.this, "您點擊了一個帶圖片的按鈕", Toast.LENGTH_LONG).show();
  35.                 
  36.             }
  37.         });
  38.         super.onCreate(savedInstanceState);
  39.     }
  40. }
復制代碼
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.         android:orientation="vertical" android:layout_width="fill_parent"
  4.         android:layout_height="fill_parent">
  5.         <TextView android:layout_width="fill_parent"
  6.                           android:layout_height="wrap_content" 
  7.                           android:textColor="#000000"
  8.                           android:textSize="18dip"
  9.                           android:background="#00FF00"
  10.                       android:text="Button按鈕測試" 
  11.                       android:gravity="center_vertical|center_horizontal"
  12.                       />
  13.       <Button
  14.                      android:id="@+id/buttonview0"
  15.                &nb
copyright © 萬盛學電腦網 all rights reserved