Android模仿Buttonbar

來源:互聯網
上載者:User
 

布局檔案如下:

 
  1. <?xml version="1.0" encoding="utf-8"?> 
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
  3.     android:orientation="vertical" 
  4.     android:layout_width="fill_parent" 
  5.     android:layout_height="fill_parent" 
  6.     > 
  7.     <ViewFlipper android:id="@+id/flipper" android:layout_width="fill_parent" android:layout_height="fill_parent" /> 
  8.     <LinearLayout android:orientation="horizontal" android:layout_width="fill_parent" android:layout_height="wrap_content" 
  9.      android:background="@drawable/bottom_bg" android:layout_alignParentBottom="true" android:gravity="center_vertical" style="@android:style/ButtonBar"> 
  10.      <ImageButton android:id="@+id/searchBtn" android:src="@drawable/search_on" android:background="#00000000" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_weight="1" /> 
  11.      <ImageButton android:id="@+id/historyBtn" android:src="@drawable/history" android:background="#00000000" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_weight="1" /> 
  12.      <ImageButton android:id="@+id/starredBtn" android:src="@drawable/starred" android:background="#00000000" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_weight="1" /> 
  13.     </LinearLayout> 
  14. </RelativeLayout> 

代碼如下:

 

 
  1. import android.app.Activity; 
  2. import android.content.Intent; 
  3. import android.os.Bundle; 
  4. import android.view.LayoutInflater; 
  5. import android.view.View; 
  6. import android.view.View.OnClickListener; 
  7. import android.widget.ImageButton; 
  8. import android.widget.ViewFlipper; 
  9.   
  10. public class Search extends Activity { 
  11.       
  12.     private ImageButton searchBtn; 
  13.     private ImageButton historyBtn; 
  14.     private ImageButton starredBtn; 
  15. //通過ViewFlipper在多個view間轉換
  16.     private ViewFlipper flipper; 
  17.       
  18.       
  19.     @Override 
  20.     public void onCreate(Bundle savedInstanceState) { 
  21.         super.onCreate(savedInstanceState); 
  22.         setContentView(R.layout.main); 
  23.         findViews(); 
  24.         bindListener(); 
  25.     } 
  26.       
  27.     public void findViews(){ 
  28.         searchBtn=(ImageButton)findViewById(R.id.searchBtn); 
  29.         historyBtn=(ImageButton)findViewById(R.id.historyBtn); 
  30.         starredBtn=(ImageButton)findViewById(R.id.starredBtn); 
  31.  
  32.         flipper=(ViewFlipper)findViewById(R.id.flipper); 
  33.  
  34.         LayoutInflater layoutInflater=this.getLayoutInflater(); 
  35.         View search=layoutInflater.inflate(R.layout.search, null); 
  36.         View history=layoutInflater.inflate(R.layout.history, null); 
  37.         View starred=layoutInflater.inflate(R.layout.starred, null); 
  38. //將3個view加入ViewFlipper中
  39.         flipper.addView(search, 0); 
  40.         flipper.addView(history, 1); 
  41.         flipper.addView(starred, 2); 
  42. //設定首先顯示第一個view
  43.         flipper.setDisplayedChild(0); 
  44.     } 
  45.       
  46.     public void bindListener(){ 
  47.         searchBtn.setOnClickListener(new OnClickListener() { 
  48. //點擊第一個button,設定view為0
  49.             @Override 
  50.             public void onClick(View v) { 
  51.                 searchBtn.setImageResource(R.drawable.search_on); 
  52.                 historyBtn.setImageResource(R.drawable.history); 
  53.                 starredBtn.setImageResource(R.drawable.starred); 
  54.                 flipper.setDisplayedChild(0); 
  55.             } 
  56.         }); 
  57.         historyBtn.setOnClickListener(new OnClickListener() { 
  58.             //點擊第二個button,設定view為1
  59.             @Override 
  60.             public void onClick(View v) { 
  61.                 searchBtn.setImageResource(R.drawable.search); 
  62.                 historyBtn.setImageResource(R.drawable.history_on); 
  63.                 starredBtn.setImageResource(R.drawable.starred); 
  64.                 flipper.setDisplayedChild(1); 
  65.             } 
  66.         }); 
  67.         starredBtn.setOnClickListener(new OnClickListener() { 
  68.              //點擊第三個button,設定view為2
  69.             @Override 
  70.             public void onClick(View v) { 
  71.                 searchBtn.setImageResource(R.drawable.search); 
  72.                 historyBtn.setImageResource(R.drawable.history); 
  73.                 starredBtn.setImageResource(R.drawable.starred_on); 
  74.                 flipper.setDisplayedChild(2); 
  75.             } 
  76.         }); 
  77.     } 

程式:

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.