Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android之最簡單的ImageView加邊框方法

Android之最簡單的ImageView加邊框方法

編輯:關於Android編程

通常情況下,如果我們要給ImageView加上邊框,比如寬為3dp的灰色框,是自己定義一個MyImageView類,繼承自ImageView,在其onDraw方法中畫canvas。 還有設置一個帶有邊框的背景圖片的方法。   這裡給出一種簡單方法,既不需要創建衍生的類,也不需要准備圖片。采用xml定義的方式實現。 背景定義xml: bg_border.xml <?xml version="1.0" encoding="UTF-8"?>      <shape xmlns:android="http://schemas.android.com/apk/res/android">        <solid android:color="#EEEEEE" />    www.2cto.com    <stroke android:width="3dp" android:color="#EEEEEE" />        <corners android:radius="0dp" />        <padding android:left="0dp" android:top="0dp"           android:right="0dp" android:bottom="0dp" />      </shape>      在Imageview定義頁面上使用代碼: <ImageView android:id="@+id/iv_thumbnail"                 android:layout_height="63dp"                  android:layout_width="63dp"                 android:background="@drawable/bg_border"                 android:padding="3dp"              />           
  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved