我正在使用nhaarman的ListViewAnimations(http://nhaarman.github.io/ListViewAnimations/)来实现可扩展列表视图,其中每一行都有一个父视图和一个子视图,当用户单击父视图时,该子视图会展开。子行有几个高度可变的文本视图。但是,当列表视图呈现并且我单击以展开子视图时,它不足以显示所有内容。

这是我的子视图布局的样子:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/list_item_child"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@android:color/white"
    android:paddingBottom="20dp"
    android:paddingLeft="20dp"
    android:paddingRight="20dp" >

    <ImageView
        android:id="@+id/listItemArrow"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        android:contentDescription="@null" />

    <RelativeLayout
        android:id="@+id/listItemInfoContainer"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >

        <TextView
            android:id="@+id/listItemTitle"
            style="@style/ScentTitle"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="20dp" />

        <TextView
            android:id="@+id/listItemDetails"
            style="@style/itemDetails"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_below="@id/listItemTitle" />

        <Button
            android:id="@+id/listItemShopNowButton"
            style="@style/itemButton"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_below="@id/listItemDetails"
            android:layout_centerHorizontal="true"
            android:layout_marginTop="10dp"
            android:paddingLeft="30dp"
            android:paddingRight="30dp"
            android:text="@string/shop_now" />

    </RelativeLayout>

</RelativeLayout>


我最初将文本视图的layout_height设置为fill_parent,但将其更改为wrap_content。这似乎也没有解决。有没有人遇到类似的问题。

最佳答案

您可以尝试这样做,您必须在ListViewAnimations库中修改ExpandableListItemAdapter.java。

以此替换animateExpanding()方法,以使其包裹整个扩展布局:

    public static void animateExpanding(final View view) {

        /*
         * Set this view to invisible so that the size can be measured. If it's set to View.VISIBLE here
         * the maximized layout appears to flicker in before animating.
         */
        view.setVisibility(View.INVISIBLE);

        view.post(new Runnable() {

            @Override
            public void run() {

                /*
                 * Do view.getWidth in a view.post thread or else the first view.getWidth will always be 0.
                 *
                 * The width MeasureSpec cannot be set to UNSPECIFIED here or else the height of wrapped
                 * textViews gets calculated as if it's a single infinitely long line.
                 */
                int widthSpec = View.MeasureSpec.makeMeasureSpec(view.getWidth(), View.MeasureSpec.AT_MOST);
                int heightSpec = View.MeasureSpec.makeMeasureSpec(0, View.MeasureSpec.UNSPECIFIED);
                view.measure(widthSpec, heightSpec);

                ValueAnimator animator = createHeightAnimator(view, 0, view.getMeasuredHeight());
                animator.start();
                view.setVisibility(View.VISIBLE);
            }
        });

    }


问题最初出在textViews上,其环绕文本的计算方式就像是一行。如果您的布局没有该自动换行符,则该库会很好。

如果Niek Haarman将修复程序更新为其他或更优雅的解决方案,请检查https://github.com/nhaarman/ListViewAnimations/issues/61

10-07 18:43