图片外边框实现

微博项目里要求实现这种效果,里面的图片随机从网络获取,外面的灰色边框需要代码添加上去。

参照网上的代码,北京为ImageView,通过FrameLayout实现两个ImageView上下显示。并将下面的ImageView北京设置为白色,并添加边框。

上代码:

XML文件:

 <FrameLayout
        android:layout_width="50.0dip"
        android:layout_height="50.0dip"
        android:layout_weight="0.0"
        android:layout_marginLeft="5.0dip"
        android:background="#888888"
         >
         <!-- android:background="@drawable/bg15" -->

        <com.cyol.android.wbxy.mylistview.myImageView
            android:id="@+id/home_headicon_bg"
            android:layout_width="60.0dip"
            android:layout_height="60.0dip"
            android:scaleType="center"
            android:background="@color/white"
            />
        <ImageView
            android:id="@+id/home_headicon"
            android:layout_width="45.0dip"
            android:layout_height="45.0dip"
            android:layout_gravity="center"
            android:src="@drawable/touxiang_icon"
            android:scaleType="centerInside" />
    </FrameLayout>

 

自定义ImageView:

package com.cyol.android.wbxy.mylistview;

import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Paint;
import android.graphics.Rect;
import android.util.AttributeSet;
import android.widget.ImageView;

public class myImageView extends ImageView {

 private int co;
 private int borderwidth;
 public myImageView(Context context) {
  super(context);
 }
 public myImageView(Context context, AttributeSet attrs,
   int defStyle) {
  super(context, attrs, defStyle);
 }

 public myImageView(Context context, AttributeSet attrs) {
  super(context, attrs);
 }
 //设置颜色
 public void setColour(int color){
  co = color;
 }
 //设置边框宽度
 public void setBorderWidth(int width){
  borderwidth = width;
 }
 @Override
 protected void onDraw(Canvas canvas) {
  super.onDraw(canvas);
  // 画边框
  Rect rec = canvas.getClipBounds();
//  rec.bottom;
//  rec.right--;
  Paint paint = new Paint();
  //设置边框颜色
  paint.setColor(co);
  paint.setStyle(Paint.Style.STROKE);
  //设置边框宽度
  paint.setStrokeWidth(borderwidth);
  canvas.drawRect(rec, paint);
 }
}

代码调用:

home_headicon_bg=(myImageView)rowView.findViewById(R.id.home_headicon_bg);
   home_headicon_bg.setColour(Color.GRAY);
   home_headicon_bg.setBorderWidth(2);
    // 头像图片
   home_headicon = (ImageView) rowView .findViewById(R.id.home_headicon);

OK~~效果完美~~间接的实现方式~~ 偷笑
  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值