android 按鈕背景 圓角+點擊效果

來源:互聯網
上載者:User

標籤:android   style   blog   class   code   java   

今天做了個按鈕,不想麻煩美工做圖片,又不喜歡方角的圖片,就用xml做了圓角的圖片,做好之後發現,點擊的時候看不出點擊效果了,xml可以定義點擊效果,

就想怎麼能兩個一起實現,網上找了下大致看了一遍都不是我想要的,就慢慢的試了試,結果兩者一結合就OK了。

 

 1  <Button  2          android:id="@+id/repeat" 3          android:layout_width="fill_parent" 4          android:layout_height="wrap_content" 5          android:text="重新開始答題" 6          android:layout_marginLeft="10dip" 7          android:layout_marginRight="10dip" 8          android:layout_marginTop="25dip" 9          android:background="@drawable/button_style"10          />
button_style如下:

 1 <?xml version="1.0" encoding="utf-8"?> 2 <selector xmlns:android="http://schemas.android.com/apk/res/android" > 3     <item android:state_pressed="true"> 4           <shape xmlns:android="http://schemas.android.com/apk/res/android" 5             android:shape="rectangle"> 6             <!-- 圓角深紅色按鈕 --> 7             <solid android:color="#4D0A0A"/> 8             <corners android:radius="8dip"/> 9          </shape>  10     </item>11        12     <item android:state_pressed="false">13         <shape xmlns:android="http://schemas.android.com/apk/res/android"14             android:shape="rectangle">15             <!-- 圓角紅色按鈕 -->16             <solid android:color="#D9534F"/>17             <corners android:radius="8dip"/>18          </shape> 19     </item>20 21 </selector>

 

button_style.xml是定義在drawable下的xml檔案.
<corners android:radius="8dip"/> 定義圓角大小。
 
相關文章

聯繫我們

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