android學習筆記11:按鈕

來源:互聯網
上載者:User

android中的按鈕分為兩類,普通按鈕和圖片按鈕。而且我們可以通過指定xml檔案作為按鈕的資源或者背景,來實現按鈕的動態變化。下面的這個程式實現了按鈕按下去之後按鈕的圖片改變的效果。

 

 

按下之前和按下時的對比

 


這個效果就是通過指定一定xml檔案實現的。代碼:


<?xml version="1.0" encoding="utf-8"?> 
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:orientation="horizontal" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    > 
<TableRow> 
<!-- 普通文字按鈕 -->    
<Button 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:background="@drawable/red" 
    android:text="普通按鈕" 
    android:textSize="10pt" 
/> 
<!-- 普通圖片按鈕 --> 
<ImageButton 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:src="@drawable/blue" 
    android:background="#000000" 
/> 
</TableRow> 
<TableRow> 
<!-- 按下時顯示不同圖片的按鈕 --> 
<ImageButton 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:src="@drawable/button_selector" 
    android:background="#000000" 
/> 
<!-- 帶文字的圖片按鈕--> 
<Button 
    android:id="@+id/test" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:background="@drawable/button_selector" 
    android:text="帶文字的圖片按鈕" 
/> 
</TableRow> 
</TableLayout> 
<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:orientation="horizontal"
 android:layout_width="fill_parent"
 android:layout_height="fill_parent"
 >
<TableRow>
<!-- 普通文字按鈕 --> 
<Button
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 android:background="@drawable/red"
 android:text="普通按鈕"
 android:textSize="10pt"
/>
<!-- 普通圖片按鈕 -->
<ImageButton
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 android:src="@drawable/blue"
 android:background="#000000"
/>
</TableRow>
<TableRow>
<!-- 按下時顯示不同圖片的按鈕 -->
<ImageButton
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 android:src="@drawable/button_selector"
 android:background="#000000"
/>
<!-- 帶文字的圖片按鈕-->
<Button
 android:id="@+id/test"
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 android:background="@drawable/button_selector"
 android:text="帶文字的圖片按鈕"
/>
</TableRow>
</TableLayout>

<?xml version="1.0" encoding="UTF-8"?> 
<selector xmlns:android="http://schemas.android.com/apk/res/android"> 
    <!-- 指定按鈕按鈕下時的圖片 --> 
    <item android:state_pressed="true" 
        android:drawable="@drawable/red" 
    /> 
    <!-- 指定按鈕鬆開時的圖片 -->    
    <item android:state_pressed="false" 
        android:drawable="@drawable/purple" 
    /> 
</selector> 


摘自 hn307165411的專欄


 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.