我正在尝试给布局充气并将其添加到可拖动的网格视图但是我得到的只是一个黄色的sqaure。可拖动视图的addView()方法仅获取单个视图。例如,如果我添加textView或imageView,则会显示textview。如果我添加线性布局,则仅显示线性布局的背景(也称为线性布局)。但不是线性布局的孩子(图像和文本视图)。 dgv(可拖动的Gridview)扩展了ViewGroup这里的代码:
添加线性布局:
LayoutInflater inflater = LayoutInflater.from (getActivity ());
View cellView = inflater.inflate (R.layout.celllayout, null);
if (cellView != null)
Log.d ("Snap", "cellView != null");
TextView textView = (TextView) cellView.findViewById (R.id.grid_label);
textView.setText (word);
ImageView imageView = (ImageView) cellView.findViewById (R.id.grid_image);
imageView.setImageBitmap (getThumb (word));
dgv.addView (cellView);
线性布局:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#FFF000"
android:gravity="center"
android:orientation="vertical"
android:padding="5dp" >
<TextView
android:id="@+id/grid_label"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_marginTop="5dip"
android:text="@string/grid_label"
android:textColor="#c31d36"
android:textSize="15sp" />
<ImageView
android:id="@+id/grid_image"
android:layout_width="150dip"
android:layout_height="150dip"
android:layout_gravity="center_horizontal"
android:contentDescription="An Image"
android:background="#ffff0000"/>
</LinearLayout>
DGV:
@Override
public void addView (View child) {
super.addView (child);
Log.d ("Draggable", "Draggable-addView");
newPositions.add (-1);
}
有什么想法吗?我需要提供更多信息吗?我唯一的解决方案是自定义imageview并覆盖ondraw并做我想要的。但那太酷了,不具备可扩展性。任何帮助将不胜感激。
答案 0 :(得分:2)
这是DraggableGridView的一个已知问题 - 遗憾的是 - 我还没有解决这个问题。当我写DGV时,我并没有完全理解如何构建视图。在铺设之前,您可能会尝试让DGV测量每个孩子。添加如下内容:
getChildAt(i).measure(MeasureSpec.makeMeasureSpec(childSize, MeasureSpec.EXACTLY), MeasureSpec.makeMeasureSpec(childSize, MeasureSpec.EXACTLY));
在此行的布局之前:
getChildAt(i).layout(xy.x, xy.y, xy.x + childSize, xy.y + childSize);