Android中的圆角在ListView中

时间:2011-07-20 12:31:24

标签: android listview selector rounded-corners

我有一个带有圆角的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){ ... }

由于

3 个答案:

答案 0 :(得分:4)

看起来除了扩展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();
    }
}

答案 1 :(得分:0)

您可以使用背景中使用的9音高图像来实现它。   请在android网站上查看doc。

谢谢

答案 2 :(得分:0)

您可以制作带圆角的透明9Patch图像,并将其用作遮罩以覆盖LinearLayout。这样,选择器的出血并不重要 - 掩模将始终覆盖该问题。

我需要找到一种掩盖任何布局的好方法来创建典型的iOS风格布局。

我在这个问题上写了一个完整的答案: Android XML rounded clipped corners