您好,登錄后才能下訂單哦!
Android中 Button如何使用,針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
一,Android Button布局管理(Layout)
每一個界面組件都是View的子類,都可以單獨占用一個屏幕,但是真正的有用的界面都是這些組件的組合,在Android中都是用各種Layout來進行布局管理,這與傳統的J2SE中的一些AWT,SWING界面方式基本相同,這里就不多說。
二,Android Button一個單獨的界面元素:
在前面說到Hello World例子中,講過這樣一段代碼。在Activity中.
public class HelloActivity extends Activity { /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); TextView tv = new TextView(this); tv.setText("Hello, World!"); this.setContentView(tv); } }
這里并沒有用到Layout,這就是單獨的組件方式。也可以改為:
super.onCreate(savedInstanceState); Button btn = new Button(this); btn.setText("TestButton"); this.setContentView(btn);
編譯運行,會有一個全屏的Button,當然這不是你想要的實用的界面.那我們就用Layout來布局
super.onCreate(savedInstanceState); Button btn = new Button(this); btn.setText("TestButton"); Button btn2 = new Button(this); btn2.setText("TestButton2"); LinearLayout layout = new LinearLayout(this); layout.setOrientation(LinearLayout.VERTICAL); layout.addView(btn); layout.addView(btn2); this.setContentView(layout);
編譯運行,你就可以看到了兩個上下排列的Android Button,當然對于布局管理器的使用,做過PC 上AWT,SWING的人都不陌生,這里就不贅述。
那如何響應事件呢: 大家猜一猜?想必大家不難猜到,在AWT中,在手機的J2ME中,都是用Listener 來處理事件響應,Android也未能脫俗。這與Blackberry,Symbian中的Observer是同一個道理。都是使用了設計模式的觀察者模式。下面來看一個能響應事件的例子。
import android.app.Activity; import android.os.Bundle; import android.view.View; import android.view.View.OnClickListener; import android.widget.Button; import android.widget.LinearLayout; public class HelloActivity extends Activity implements OnClickListener { Button btn = null; Button btn2 = null; public void onClick(View v) { if (v == btn) { this.setTitle("You Clicked Button1"); } if (v == btn2) { this.setTitle("You Clicked Button2"); } } @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); btn = new Button(this); btn2 = new Button(this); btn.setText("TestButton1"); btn2.setText("TestButton2"); btn.setOnClickListener(this); btn2.setOnClickListener(this); LinearLayout layout = new LinearLayout(this); layout.setOrientation(LinearLayout.VERTICAL); layout.addView(btn); layout.addView(btn2); this.setContentView(layout); } }
Android Button操作步驟是:
一,生成兩個Button,配置Click事件監聽者為HelloActivity ,此類實現了OnClickListener接口。
二,放入布局,按布局顯示兩個Button
三,按下其中一個Button,生成Click事件,調用HelloActivity 的OnClick接口函數。
四,對于View參數的值,判斷是哪個View(Button)。改寫Activity的Titile內容。注意,可別去對比View.getId(),缺省情況下,每個組件的Id值都為-1,除非人為設定Id值,用可視化編程時,為自動為其生成一個Id值。
關于Android中 Button如何使用問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。