37

我想在文本视图上放置一个圆形背景。圆形在渲染时变为椭圆形。

我的布局 XML:

    <TextView
        android:id="@+id/amount_key"
        android:layout_weight="1"
        android:layout_height="match_parent"
        android:layout_width="match_parent"
        android:layout_marginRight="2dp"
        android:gravity="center"
        android:background="@drawable/circle"
        android:layout_marginLeft="20dp"
        android:text="3\ndays"
        android:padding="20dp"
        android:textColor="#ffffff"
        android:textStyle="bold"
        android:textSize="25dp" />


</LinearLayout>

我的圈子背景:

<shape 
    xmlns:android="http://schemas.android.com/apk/res/android"
            android:shape="oval">

            <solid 
               android:color="#79bfea"/>
</shape>
4

6 回答 6

49
  • 改变你textViewlayout_heightlayout_widthwrap_content
  • 在形状标签内添加尺寸标签,如下所示
<shape 
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval">> 
<solid android:color="#79bfea" />
<size android:height="25dp"
   android:width="25dp"/>
</shape>

如果它仍然是椭圆形,请尝试增加 size 标签的宽度和高度。它对我有用!

于 2014-07-16T10:11:43.547 回答
17

您可以创建自己的 Drawable,它将半径限制在其宽度和高度之间的最小值。

package com.example.android;

import android.graphics.Canvas;
import android.graphics.ColorFilter;
import android.graphics.Paint;
import android.graphics.PixelFormat;
import android.graphics.Rect;
import android.graphics.drawable.Drawable;

public class ColorCircleDrawable extends Drawable {
    private final Paint mPaint;
    private int mRadius = 0;

    public ColorCircleDrawable(final int color) {
        this.mPaint = new Paint(Paint.ANTI_ALIAS_FLAG);
        this.mPaint.setColor(color);
    }

    @Override
    public void draw(final Canvas canvas) {
        final Rect bounds = getBounds();
        canvas.drawCircle(bounds.centerX(), bounds.centerY(), mRadius, mPaint);
    }

    @Override
    protected void onBoundsChange(final Rect bounds) {
        super.onBoundsChange(bounds);
        mRadius = Math.min(bounds.width(), bounds.height()) / 2;
    }

    @Override
    public void setAlpha(final int alpha) {
        mPaint.setAlpha(alpha);
    }

    @Override
    public void setColorFilter(final ColorFilter cf) {
        mPaint.setColorFilter(cf);
    }

    @Override
    public int getOpacity() {
        return PixelFormat.TRANSLUCENT;
    }
}

然后应用于您的 textView:

textView.setBackground(new ColorCircleDrawable(Color.RED));
于 2015-11-18T23:25:14.183 回答
9

得到这个

在此处输入图像描述

我在彼此内部使用了两个 LinearLayout 并将父重力设置为 CENTER

<LinearLayout
android:layout_width="80dp"
android:layout_height="50dp"
android:baselineAligned="false"
android:gravity="center"
android:orientation="vertical">

<LinearLayout
    android:layout_width="45dp"
    android:layout_height="45dp"
    android:gravity="center"
    android:background="@drawable/oval"
    android:orientation="vertical">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:text="Text"
        android:textSize="12sp" />
</LinearLayout>
</LinearLayout>

这是可绘制文件夹中的椭圆形.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="oval">
    <solid android:color="#393939" />
    <size
        android:width="40dp"
        android:height="40dp" />
</shape>

没有内部 LinearLayout 你会得到这个

在此处输入图像描述

它的代码是

<LinearLayout
android:layout_width="80dp"
android:layout_height="50dp"
android:baselineAligned="false"
android:gravity="center"
android:background="@drawable/oval"
android:orientation="vertical">

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    android:text="Text"
    android:textSize="12sp" />
</LinearLayout>
于 2015-11-18T23:03:36.303 回答
3

我扩展了 TextView 类以将宽度设置为高度

public class TextViewSquareShaped extends TextView {


public TextViewSquareShaped(Context context, AttributeSet attrs, int defStyle) {
    super(context, attrs, defStyle);
    init(attrs);
}

public TextViewSquareShaped(Context context, AttributeSet attrs) {
    super(context, attrs);
    init(attrs);

}

public TextViewSquareShaped(Context context) {
    super(context);
    init(null);
}

private void init(AttributeSet attrs) {
}

@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
    int width = getDefaultSize(getSuggestedMinimumWidth(), widthMeasureSpec);
    setMeasuredDimension(width, width);
    Log.v("measure", "width:" + width + " height:" + width);
 }
}

然后结合上面 Sudhasri 的回答,我可以显示精确的圆形文本视图。

所以不需要给出固定的身高和体重。

于 2015-04-29T09:22:42.367 回答
1

由于您使用match_parent宽度和高度并在背景中设置可绘制对象,因此它将是椭圆形的。要实现圆形,您可以为宽度和高度提供相同的尺寸。NA diff 想要全屏,那么您可以java使用代码从WindowManager宽度和高度中设置相同的值。

于 2013-09-28T05:34:32.457 回答
-3

尝试使用环形而不是椭圆形

<shape 
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="ring" >

    <solid android:color="#79bfea" />
</shape>
于 2013-09-28T04:18:02.680 回答