android中ImageView设置图片边框的方法

用的是布局的方式来实现的: 
Xml代码   收藏代码
  1. <TableLayout android:layout_width="wrap_content" android:layout_height="wrap_content"  
  2.      android:background="@drawable/white">  
  3.     <TableRow android:layout_width="wrap_content">  
  4.         <ImageView android:id="@+id/img_play" android:layout_width="90px" android:layout_height="90px"   
  5.         android:layout_margin="2dip" android:scaleType="centerCrop" />  
  6.     </TableRow>  
  7.   </TableLayout>  

说明:1、是把ImageView放在一个TableLayout中来实现的。 
      2、要设置ImageView的大小,就是长和宽(宽必须要设置)。 
      3、设置android:scaleType="centerCrop"属性, 按比例扩大图片的size居中显示,使得图片长(宽)等于或大于View的长(宽)。 
     4、设置ImageView的android:layout_margin="2dip"属性。 
      5、设置TableLayout的android:background="@drawable/white"属性。

你可能感兴趣的:(android,imageview,加边框)