其他分享
首页 > 其他分享> > Android在ListView中的圆角

Android在ListView中的圆角

作者:互联网

我有一个使用以下形状作为背景的圆角的ListView:

<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
<solid android:color="#ffffff"/>
<corners android:bottomRightRadius="13px" android:bottomLeftRadius="13px" android:topLeftRadius="13px" android:topRightRadius="13px"/>
</shape>

问题出在选择器上.它是矩形的,因此在选择第一个或最后一个项目时,角不再圆化.我在上一篇文章http://www.anddev.org/view-layout-resource-problems-f27/rounded-corners-on-listview-t8193-15.html中找到了一个很好的解决方案.问题是我无法使另一个类继承自ListView.当我仅有的是对现有ListView的引用时,如何应用此方法?我必须这样做的原因是布局是从xml膨胀的.

我正在寻找类似的东西:

ListView lv = (ListView)findViewById(...);
lv.onSizeChanged = protected void onSizeChanged(int w, int h, int oldw, int oldh){ ... }

谢谢

解决方法:

看起来除了扩展ListView类并在XML中使用它,别无其他方法.这是示例代码:

public class WListView extends LinearLayout
{
    // =================================================================
    // Variables
    // =================================================================
    private Path clipArea;

    // =================================================================
    // Public methods
    // =================================================================

    public WListView(Context context)
    {
        super(context);
    }

    public WListView(Context context, AttributeSet attr)
    {
        super(context, attr);
    }

    // =================================================================
    // Private methods
    // =================================================================


    @Override
    protected void onSizeChanged(int w, int h, int oldW, int oldH)
    {
        super.onSizeChanged(w, h, oldW, oldH);
        clipArea = new Path();
        RectF rect = new RectF(0, 0, w, h);

        int cornerRadius = 13; // we should convert px to dp here
        clipArea.addRoundRect(rect, cornerRadius, cornerRadius, Path.Direction.CW);
    }

    @Override
    protected void dispatchDraw(Canvas canvas)
    {
        canvas.save();
        canvas.clipPath(clipArea);
        super.dispatchDraw(canvas);
        canvas.restore();
    }
}

标签:selector,listview,rounded-corners,android
来源: https://codeday.me/bug/20191102/1991107.html