android給View設定上下左右邊框

來源:互聯網
上載者:User

標籤:xml檔案   androi   上下   bsp   height   and   設定   左右   上下左右   

給View控制項設定邊框,可以動態設定上下左右.通過布局檔案就能搞定

 

1.在drawable檔案夾下建立一個shape_main_list_bg.xml檔案

 

  1. <layer-list xmlns:android="http://schemas.android.com/apk/res/android" >  
  2.     <!-- This is the main color -->  
  3.     <item>  
  4.         <shape>  
  5.                 <!--    邊框顏色 -->  
  6.             <solid android:color="#00FF00"/>  
  7.         </shape>  
  8.     </item>  
  9.     <!-- 給View的上 左  右設定8dp的邊框 -->  
  10.     <item android:top="8dp" android:left="8dp" android:right="8dp" >  
  11.         <shape>  
  12.                 <!--     View填充顏色 -->  
  13.             <solid android:color="#FFFFFF" />  
  14.         </shape>  
  15.     </item>  
  16.   
  17. </layer-list>  

 

 


2.給控制項設定背景

 

  1. <EditText  
  2.     android:padding="20dp"  
  3.     android:layout_margin="15dp"  
  4.     android:layout_width="match_parent"  
  5.     android:layout_height="wrap_content"  
  6.     android:hint="請輸入Edittext內容"  
  7.     android:background="@drawable/shape_main_list_bg"/>  

 

 

 

3.如下:

  

 

推薦下自己建立的android QQ群:202928390 歡迎大家的加入.

  

android給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.