zoukankan      html  css  js  c++  java
  • Android之最简单的ImageView加边框方法

    转自:http://www.th7.cn/Program/Android/201301/120345.shtml

    通常情况下,如果我们要给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" />     
      <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"     
            />    
     
  • 相关阅读:
    寒假作业3
    寒假作业2
    寒假作业
    Binary Indexed Tree
    Quick Union
    Prim's Algorithm & Kruskal's algorithm
    面向对象阶段总结 | 肆
    面向对象阶段总结 | 叁
    面向对象阶段总结 | 贰
    面向对象阶段总结 | 壹
  • 原文地址:https://www.cnblogs.com/sudawei/p/3408714.html
Copyright © 2011-2022 走看看