Android中focusable屬性的妙用——底層按鈕的實現

來源:互聯網
上載者:User

看到百威啤酒的用戶端主介面的按鈕,感覺比較新奇,先看片:

注意圖中我畫的箭頭,當時滑鼠點擊的黑色圈圈的位置,然後按鈕出現了按下的效果(黃色的描邊)

剛開始看到這種效果很是好奇,不知道是怎麼實現的,後來仔細一想,應該是整個啤酒罐是一張圖片(ImageView),該圖片是布局在三個按鈕之上,然後就是最關鍵的地方,把圖片設定為不可擷取焦點,也就是android:focusable="false" ,就這樣簡單的一行,就可以搞定了!

為了驗證我的想法,我建了一個工程來做測試,效果如所示:

具體代碼如下:

main.xml:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical" >
        <Button
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_margin="10dp"
            android:text="button1"
            android:background="@drawable/button_selector"
            />   
        <Button
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_margin="10dp"
            android:text="button2"
            android:background="@drawable/button_selector"
            /> 
        <Button
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_margin="10dp"
            android:text="button3"
            android:background="@drawable/button_selector"
            /> 
    </LinearLayout>
    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/bg2"
        android:focusable="false"
        />
</RelativeLayout>

 

button_selector.xml:

<?xml version="1.0" encoding="utf-8"?>
<selector
    xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_pressed="true" >
        <shape>
            <!-- 實心,即填充 -->
            <solid android:color="#8470FF"/>
            <!-- 描邊 -->
            <stroke
                android:width="2dp"
                android:color="#FFFF00"/>
            <!-- 圓角 -->
            <corners
                android:radius="5dp" />
            <padding
                android:left="10dp"
                android:top="10dp"
                android:right="10dp"
                android:bottom="10dp" />
        </shape>
    </item>

    <item>      
        <shape>
            <!-- 實心,即填充 -->
            <solid android:color="#8470FF"/>
            <corners
                android:radius="5dp" />
            <padding
                android:left="10dp"
                android:top="10dp"
                android:right="10dp"
                android:bottom="10dp" />
        </shape>
    </item>
</selector>

關於button_selector.xml中shape的使用有疑問的可以看我上次的文章:Android中shape的使用

ok,就說這麼多……

相關文章

聯繫我們

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