Android開發--圓角按鈕和繪製直線的實現

來源:互聯網
上載者:User

 我們通常會覺得系統給出的按鈕不夠美觀,這時,我們可以自己定義一個按鈕,已達到自己的需求,在這裡實現一個圓角按鈕。需要在drawable檔案夾下建立一個xml檔案,並以shape為根標籤,利用如下的shape即可實現需求:[html]  <?xml version="1.0" encoding="utf-8"?>  <shape      xmlns:android="http://schemas.android.com/apk/res/android"      android:shape="rectangle">      <!-- 填充的顏色(白色) -->      <solid android:color="#0000FF" />      <!-- 設定按鈕的四個角為弧形 -->      <!-- android:radius 弧形的半徑 -->      <corners android:radius="5dip" />        <!-- padding:Button裡面的文字與Button邊界的間隔 -->  <padding     android:left="10dp"     android:top="10dp"     android:right="10dp"     android:bottom="10dp"  />  </shape>   同時需要在layout檔案裡為Button標籤添加如下一行代碼進行聲明:[html] android:background="@drawable/shape"   下面,我想在Activity中繪製一條直線,實現也很簡單,只需要使用View作為根標籤,同時設定高度為1px即可,下面給出實現的聲明:[html]  <View            android:layout_height="1px"           android:background="#ff0000"           android:layout_width="fill_parent">  </View>   是實現的:

相關文章

聯繫我們

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