android实现圆角矩形背景的方法_Android

本文实例讲述了android实现圆角矩形背景的方法。分享给大家供大家参考。具体如下:

1. java代码如下:

import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.ColorFilter;
import android.graphics.Paint;
import android.graphics.Rect;
import android.graphics.drawable.Drawable;
import android.graphics.drawable.shapes.RoundRectShape;
import android.view.MotionEvent;
public class RoundRectDradable extends Drawable{
  private static final float DEFAULT_RADIUS = 6.f;
  private Paint mPaint = new Paint();
  private RoundRectShape mShape;
  private float[] mOuter;
  private int mColor;
  private int mPressColor;
  private float mTopLeftRadius = DEFAULT_RADIUS;
  private float mTopRightRadius = DEFAULT_RADIUS;
  private float mBottomLeftRadius = DEFAULT_RADIUS;
  private float mBottomRightRadius = DEFAULT_RADIUS;
  public RoundRectDradable() {
    mColor = Color.WHITE;
    mPressColor = Color.WHITE;
    mPaint.setColor(mColor);
    mPaint.setAntiAlias(true);
  }
  public float getTopLeftRadius() {
    return mTopLeftRadius;
  }
  public void setTopLeftRadius(float topLeftRadius) {
    this.mTopLeftRadius = topLeftRadius;
  }
  public float getTopRightRadius() {
    return mTopRightRadius;
  }
  public void setTopRightRadius(float topRightRadius) {
    this.mTopRightRadius = topRightRadius;
  }
  public float getBottomLeftRadius() {
    return mBottomLeftRadius;
  }
  public void setBottomLeftRadius(float bottomLeftRadius) {
    this.mBottomLeftRadius = bottomLeftRadius;
  }
  public float getBottomRightRadius() {
    return mBottomRightRadius;
  }
  public void setBottomRightRadius(float bottomRightRadius) {
    this.mBottomRightRadius = bottomRightRadius;
  }
  public int getPressColor() {
    return mPressColor;
  }
  public void setPressColor(int pressColor) {
    this.mPressColor = pressColor;
  }
  @Override
  protected void onBoundsChange(Rect bounds) {
    super.onBoundsChange(bounds);
    refreshShape();
    mShape.resize(bounds.right - bounds.left, bounds.bottom - bounds.top);
  }
  private void refreshShape(){
    mOuter = new float[]{mTopLeftRadius, mTopLeftRadius
        , mTopRightRadius, mTopRightRadius
        , mBottomLeftRadius, mBottomLeftRadius
        , mBottomRightRadius, mBottomLeftRadius};
    mShape = new RoundRectShape(mOuter, null, null);
  }
  public void setColor(int color){
    mColor = color;
    mPaint.setColor(color);
  }
  @Override
  public void draw(Canvas canvas) {
    mShape.draw(canvas, mPaint);
  }
  @Override
  public void setAlpha(int alpha) {
    mPaint.setAlpha(alpha);
  }
  @Override
  public void setColorFilter(ColorFilter cf) {
    mPaint.setColorFilter(cf);
  }
  @Override
  public int getOpacity() {
    return mPaint.getAlpha();
  }
}

2. java代码如下:

import android.graphics.Rect;
import android.graphics.drawable.StateListDrawable;
public class StateRoundRectDrawable extends StateListDrawable{
  private static final float DEFAULT_RADIUS = 6.f;
  private float mTopLeftRadius = DEFAULT_RADIUS;
  private float mTopRightRadius = DEFAULT_RADIUS;
  private float mBottomLeftRadius = DEFAULT_RADIUS;
  private float mBottomRightRadius = DEFAULT_RADIUS;
  private int mNormalColor;
  private int mPressedColor;
  private RoundRectDradable mNormalDradable;
  private RoundRectDradable mPressedDradable;
  public StateRoundRectDrawable(int normalCorlor, int pressColor) {
    this.mNormalColor = normalCorlor;
    this.mPressedColor = pressColor;
  }
  @Override
  protected void onBoundsChange(Rect bounds) {
    if(mNormalDradable == null){
      mNormalDradable = new RoundRectDradable();
      mNormalDradable.setTopLeftRadius(mTopLeftRadius);
      mNormalDradable.setTopRightRadius(mTopRightRadius);
      mNormalDradable.setBottomLeftRadius(mBottomLeftRadius);
      mNormalDradable.setBottomRightRadius(mBottomRightRadius);
      mNormalDradable.setColor(mNormalColor);
      mNormalDradable.onBoundsChange(bounds);
    }
    if(mPressedDradable == null){
      mPressedDradable = new RoundRectDradable();
      mPressedDradable.setTopLeftRadius(mTopLeftRadius);
      mPressedDradable.setTopRightRadius(mTopRightRadius);
      mPressedDradable.setBottomLeftRadius(mBottomLeftRadius);
      mPressedDradable.setBottomRightRadius(mBottomRightRadius);
      mPressedDradable.setColor(mPressedColor);
      mPressedDradable.onBoundsChange(bounds);
    }
    this.addState(new int[]{-android.R.attr.state_pressed}, mNormalDradable);
    this.addState(new int[]{android.R.attr.state_pressed}, mPressedDradable);
  }
  public float getTopLeftRadius() {
    return mTopLeftRadius;
  }
  public void setTopLeftRadius(float topLeftRadius) {
    this.mTopLeftRadius = topLeftRadius;
  }
  public float getTopRightRadius() {
    return mTopRightRadius;
  }
  public void setTopRightRadius(float topRightRadius) {
    this.mTopRightRadius = topRightRadius;
  }
  public float getBottomLeftRadius() {
    return mBottomLeftRadius;
  }
  public void setBottomLeftRadius(float bottomLeftRadius) {
    this.mBottomLeftRadius = bottomLeftRadius;
  }
  public float getBottomRightRadius() {
    return mBottomRightRadius;
  }
  public void setBottomRightRadius(float bottomRightRadius) {
    this.mBottomRightRadius = bottomRightRadius;
  }
  public int getNormalColor() {
    return mNormalColor;
  }
  public void setNormalColor(int normalColor) {
    this.mNormalColor = normalColor;
  }
  public int getPressedColor() {
    return mPressedColor;
  }
  public void setPressedColor(int pressedColor) {
    this.mPressedColor = pressedColor;
  }
}

希望本文所述对大家的Android程序设计有所帮助。

以上是小编为您精心准备的的内容,在的博客、问答、公众号、人物、课程等栏目也有的相关内容,欢迎继续使用右上角搜索按钮进行搜索android
, 背景
圆角矩形
css3实现矩形内凹圆角、ps实现矩形内凹圆角、android 圆角矩形、android画圆角矩形、android绘制圆角矩形,以便于您获取更多的相关知识。

时间: 2024-09-20 20:08:35

android实现圆角矩形背景的方法_Android的相关文章

android实现圆角矩形背景的方法

本文实例讲述了android实现圆角矩形背景的方法.分享给大家供大家参考.具体如下: 1. java代码如下: import android.graphics.Canvas; import android.graphics.Color; import android.graphics.ColorFilter; import android.graphics.Paint; import android.graphics.Rect; import android.graphics.drawable.

Fireworks 裁切出圆角矩形图片的方法

  相信做网站的朋友肯定知道Fireworks,它是一款图像处理软件,虽然没有Photoshop功能那么强大,但足以满足网页设计的需要.好了,进入今天的主题,在网页中经常看到圆角矩形的图片,很好看,那是怎么做出来的呢?所以今天就教大家用Fireworks 8裁切出圆角矩形图片的方法. 1.用Fireworks 8打开需要进行裁切圆角矩形的图片 2.点击左边工具栏中"矩形"工具右下角的小箭头,选择"圆角矩形",相关截图如下所示: 3.在图片中画一个圆角矩形(此时会在矩

Android实现圆角矩形和圆形ImageView的方式_Android

Android中实现圆角矩形和圆形有很多种方式,其中最常见的方法有ImageLoader设置Option和自定义View. 1.ImageLoader加载图片 public static DisplayImageOptions getRoundOptions() { DisplayImageOptions options = new DisplayImageOptions.Builder() // 是否设置为圆角,弧度为多少,当弧度为90时显示的是一个圆 .displayer(new Round

Android编程实现自定义系统菜单背景的方法_Android

本文实例讲述了Android编程实现自定义系统菜单背景的方法.分享给大家供大家参考,具体如下: 不多说,上图,见代码. package lab.sodino.menutest; import android.content.Context; import android.app.Activity; import android.os.Bundle; import android.os.Handler; import android.util.AttributeSet; import androi

Android编程之阴影(Shadow)制作方法_Android

本文实例讲述了Android编程之阴影(Shadow)制作方法.分享给大家供大家参考,具体如下: 先看运行效果图如下: 阴影制作:包括各种形状(矩形,圆形等等),以及文字等等都能设置阴影. 阴影制作是什么原理呢? 其实很简单,你需要设置阴影的东西被看作一个主层.然后在主层下面画一个阴影层. 阴影制作涉及到一个重要函数: public void setShadowLayer (float radius, float dx, float dy, int color) 参数: radius:阴影半径

Android TextView 设置字体大小的方法_Android

废话不多说了,直接给大家贴代码了,具体代码如下所示: package com.example.yanlei.yl4; import android.graphics.Color; import android.os.Bundle; import android.support.v7.app.AppCompatActivity; import android.text.Spannable; import android.text.style.AbsoluteSizeSpan; import and

Android Selector和Shape的使用方法_Android

1.背景选择器(位于res/drawable/,使用方法:android:background="@drawable/XXX") 复制代码 代码如下: <?xml version="1.0" encoding="utf-8"?> <selectorxmlns:android="http://schemas.android.com/apk/res/android"> <itemandroid:dra

Android实现手机壁纸改变的方法_Android

本文实例讲述了Android实现手机壁纸改变的方法.分享给大家供大家参考.具体如下: main.xml布局文件: <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" androi

Android实现授权访问网页的方法_Android

本文实例讲述了Android授权访问网页的实现方法,即使用Webview显示OAuth Version 2.a ImplicitGrant方式授权的页,但是对于移动终端不建议使用Authorize code grant方式授权. 具体功能代码如下所示: import android.annotation.SuppressLint; import android.app.Activity; import android.content.Intent; import android.graphics