Android 常用基本控制項 ImageButton

來源:互聯網
上載者:User
  • 設定ImageButton的圖片可通過android:src屬性,也可以通過setImageResource(int)方法來實現。
  • ImageButton所顯示的圖片若不能完全覆蓋掉背景色時,使用ImageButton一般要將背景色設定為其他圖片或直接設定為透明。

<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="fill_parent"
    android:layout_height="fill_parent">
    <TableRow android:layout_width="fill_parent"
        android:layout_height="wrap_content">
        <TextView android:id="@+id/tvEmail" android:layout_width="wrap_content"
            android:layout_height="wrap_content" android:ellipsize="end"
            android:autoLink="email" android:text="郵箱\n(如sunnychuh@163.com)" />
        <EditText android:id="@+id/etEmail" android:layout_width="wrap_content"
            android:layout_height="wrap_content" android:hint="請輸入您的郵箱"
            android:selectAllOnFocus="true" />
    </TableRow>
    <TableRow android:layout_width="fill_parent"
        android:layout_height="wrap_content">
        <TextView android:id="@+id/tvPhone" android:layout_width="wrap_content"
            android:layout_height="wrap_content" android:ellipsize="middle"
            android:autoLink="email" android:text="電話\n(如1234567890):" />
        <EditText android:id="@+id/etPhone" android:layout_width="wrap_content"
            android:layout_height="wrap_content" android:maxWidth="160px"
            android:phoneNumber="true" android:singleLine="true"
            android:selectAllOnFocus="true" />
    </TableRow>
    <TableRow android:layout_width="fill_parent"
        android:layout_height="wrap_content">
        <Button android:id="@+id/button01" android:layout_width="wrap_content"
            android:layout_height="wrap_content" android:gravity="right"
            android:text="顯示" />
        <ImageButton android:layout_width="wrap_content"
            android:layout_height="wrap_content" android:src="@drawable/myselector"
            android:background="@color/abc" />
    </TableRow>
</TableLayout>

其中ImageButton的 android:src在drawable-mdpi中建立myselector.xml:

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_pressed="false" android:drawable="@drawable/img01" />
    <item android:state_pressed="true" android:drawable="@drawable/img02" />
</selector>

當按下ImageButton後,顯示如下:

相關文章

聯繫我們

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