亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

Android實(shí)現(xiàn)空心圓角矩形按鈕的實(shí)例代碼

 更新時(shí)間:2017年01月11日 11:18:44   投稿:mrr  
頁(yè)面上有時(shí)會(huì)用到背景為空心圓角矩形的Button,可以通過(guò)xml繪制出來(lái)。這篇文章主要介紹了Android實(shí)現(xiàn)空心圓角矩形按鈕的實(shí)例代碼,需要的朋友參考下吧

頁(yè)面上有時(shí)會(huì)用到背景為空心圓角矩形的Button,可以通過(guò)xml繪制出來(lái)。

drawrable文件夾下bg_red_hollow_rectangle.xml

<?xml version="1.0" encoding="utf-8"?> 
<shape xmlns:android="http://schemas.android.com/apk/res/android" 
  android:shape="rectangle"> 
  <solid android:color="@color/transparent"/> 
  <stroke 
    android:width="1dp" 
    android:color="#ce1818" /> 
  <corners android:radius="@dimen/public_space_value_5"/> 
</shape> 

shape:圖形,rectangle為矩形;

stoke:描邊
solid:填充
corners:圓角

在layout中的使用

<Button 
        android:layout_width="80dp" 
        android:layout_height="50dp" 
        android:background="@drawable/bg_red_hollow_rectangle" 
        android:gravity="center" 
        android:text="分享" /> 

效果圖如下:

以上所述是小編給大家介紹的Android實(shí)現(xiàn)空心圓角矩形按鈕的實(shí)例代碼,希望對(duì)大家有所幫助,如果大家有任何疑問(wèn)請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)腳本之家網(wǎng)站的支持!

相關(guān)文章

最新評(píng)論