欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Android按鈕美化樣式的實(shí)現(xiàn)代碼

 更新時(shí)間:2019年11月27日 11:43:50   作者:android小鑫  
本文給大家介紹android按鈕美化樣式的實(shí)現(xiàn)代碼,主要是通過在drawable文件夾下 新建button_drawable.xml,具體實(shí)現(xiàn)代碼跟隨小編一起看看吧

話不多說,上運(yùn)行效果圖

在這里插入圖片描述

在drawable文件夾下 新建button_drawable.xml

<?xml version="1.0" encoding="utf-8" ?>
<!--相當(dāng)于做了一張圓角的圖片,然后給button作為背景圖片-->
<shape xmlns:android="http://schemas.android.com/apk/res/android"
  android:shape="rectangle">
  <!--設(shè)置背景色-->
  <solid android:color="#7457ED" />
  <!--設(shè)置圓角-->
  <corners android:radius="105dip" />
  <padding
  android:bottom="12dp"
  android:left="63dp"
  android:right="63dp"
  android:top="12dp"
  />
  <!--設(shè)置邊框線的寬度和顏色-->

</shape>
// An highlighted block
var foo = 'bar';

在button屬性中引用即可

<Button
      android:id="@+id/buttona1"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_gravity="center_horizontal"
      android:background="@drawable/button_drawable"
      android:textColor="#ffffff"
      android:textSize="16dp"
      android:gravity="center_horizontal"
      android:text="登陸"
      />
      // An highlighted block
var foo = 'bar';

總結(jié)

以上所述是小編給大家介紹的Android按鈕美化樣式的實(shí)現(xiàn)代碼,希望對(duì)大家有所幫助,如果大家有任何疑問請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)腳本之家網(wǎng)站的支持!
如果你覺得本文對(duì)你有幫助,歡迎轉(zhuǎn)載,煩請(qǐng)注明出處,謝謝!

相關(guān)文章

最新評(píng)論