Подтвердить что ты не робот

Android: Вертикальный ListView с перекрывающимися рядами

Как создать listview, как это в android 1.6 или 2 (из-за renderscript, который работает только в 3 или более поздних версиях, но мне нужен список для работы почти всех андроидов):

enter image description here

4b9b3361

Ответ 1

Я использовал Camera.setTranslate(x, 0, z) в drawChild, где изменил положение x для виртуализации вращения и z для перекрытия. Тогда возникла проблема с перекрытием, потому что последний элемент был сверху и первым в нижнем слое. Итак, в onCreate() методе this.setChildrenDrawingOrderEnabled(true) и overriden protected int getChildDrawingOrder (int childCount, int i) {}, где я могу изменить порядок для средних и последующих строк. Эта идея была дана Ренардом, который предложил мне в другом моем сообщении примерно то же самое здесь.

Моя реализация getChildDrawingOrder (int, int) для получения перекрытия Мне нужно:

@Override
protected int getChildDrawingOrder (int childCount, int i) {
    int centerChild = 0;
    //find center row
    if ((childCount % 2) == 0) { //even childCount number
        centerChild = childCount / 2; // if childCount 8 (actualy 0 - 7), then 4 and 4-1 = 3 is in centre.      
        int otherCenterChild = centerChild - 1;
        //Which more in center?
        View child = this.getChildAt(centerChild);
        final int top = child.getTop();
        final int bottom = child.getBottom();
        //if this row goes through center then this
        final int absParentCenterY = getTop() + getHeight() / 2;
        //Log.i("even", i + " from " + (childCount - 1) + ", while centerChild = " + centerChild);
        if ((top < absParentCenterY) && (bottom > absParentCenterY)) {
            //this child is in center line, so it is last
            //centerChild is in center, no need to change
        } else {
            centerChild = otherCenterChild;
        }
    }
    else {//not even - done
        centerChild = childCount / 2;
        //Log.i("not even", i + " from " + (childCount - 1) + ", while centerChild = " + centerChild);
    }

    int rez = i;
    //find drawIndex by centerChild
    if (i > centerChild) {
        //below center
        rez = (childCount - 1) - i + centerChild;
    } else if (i == centerChild) {
        //center row
        //draw it last
        rez = childCount - 1;
    } else {
        //above center - draw as always
        // i < centerChild
        rez = i;
    }
    //Log.i("return", "" + rez);
    return rez;

}

Я надеюсь, что этот пост поможет кому-то в будущем

Скриншот на самом деле почти такой же, как я упоминал в моем вопросе. Я использовал альфа, поэтому наложенные элементы немного проглядывают:

enter image description here