Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發 >> 高級開發 >> android中ImageView設置圖片邊框的方法

android中ImageView設置圖片邊框的方法

編輯:高級開發

用的是布局的方式來實現的:

  XML代碼 收藏代碼

  < TableLayout android:layout_width="wrap_content" android:layout_height="wrap_content"

  android:background="@drawable/white">

  < TableRow android:layout_width="wrap_content">

  < ImageVIEw android:id="@+id/img_play" android:layout_width="90px" android:layout_height="90px"

  android:layout_margin="2dip" android:scaleType="centerCrop" />

  < /TableRow>

  < /TableLayout>

  說明:1、是把ImageVIEw放在一個TableLayout中來實現的。

  2、要設置ImageVIEw的大小,就是長和寬(寬必須要設置)。

  3、設置android:scaleType="centerCrop"屬性, 按比例擴大圖片的size居中顯示,使得圖片長(寬)等於或大於VIEw的長(寬)。

  4、設置ImageVIEw的android:layout_margin="2dip"屬性。

  5、設置TableLayout的android:background="@drawable/white"屬性。

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved