4

我正在尝试让适配器视图正确绘制其子视图,但是无法让适配器返回的视图的子视图进行绘制。具体来说,我的适配器应该吐出这样的简单视图:

    <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="#FFFFFF">

        <TextView
            android:id="@+id/photo_cell_contents"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="10px" 
            android:text="@string/photo_cell_default_text" 
            android:textColor="#000000" 
            android:textSize="80px"/>

</LinearLayout>

适配器的 getView() 方法确实被调用,并且确实将此视图的实例返回给适配器视图。我还在我的适配器视图中放置了断点,并且可以看到那里有一个适当的视图层次结构 - 带有子 textview 对象的根线性布局。但是,当适配器视图布局并绘制适配器返回的子视图时,不会绘制内部文本视图。我看到了与每个单元格对应的实际彩色框,但没有看到应该出现在里面的文本。有谁知道为什么会发生这种情况?下面是布局子视图的适配器视图的 onLayout() 方法中的代码(在我 setAdapter() 时添加,并且在我滚动适配器视图时会更新):

    for (int idx = 0; idx < this.getChildCount(); idx++) {
        if (idx != dragged)
        {
            Point xy = getCoorFromIndex(idx);
            View child = getChildAt(idx);
            child.layout(xy.x, xy.y, xy.x + childSize, xy.y + childSize); //view group will layout the children based on the sizes determined for available columns
            int left = child.getLeft();
            int right = child.getRight();
            int top = child.getTop();
            View tv = ((ViewGroup)child).getChildAt(0);
            int tvleft = tv.getLeft();
            int tvright = tv.getRight();
            int tvtop = tv.getTop();

            Log.i("dgv", "Here is info about main view ... left =  " + left + "; right = " + right + "; top = " + top);
            Log.i("dgv", "Here is info about text view ... left =  " + tvleft + "; right = " + tvright + "; top = " + tvtop);


        }
    }
4

1 回答 1

2

问题是我需要在适配器视图的布局方法中测量和布局子视图。添加代码以测量子视图然后调用 child.layout() 后,视图正确显示。希望这可以帮助。

于 2012-05-02T15:42:37.627 回答