我最终对与Android GridView相关的问题感到困惑。我很抱歉有一点点描述,但我没有太多时间来优化我的问题。
这是我想要的。 应该有一个带有(8x10)元素的GridView。 每个元素具有来自5个支持的颜色集的初始生成的随机颜色。 (我已经使用Android View类型作为元素,只设置了背景颜色。)
每当用户点击一个元素时,它应该被“删除”,并且它上面的所有元素都应该向下移动以填充空白空间。 (我从上面的元素中获取颜色id并将其设置为当前元素,直到达到顶部元素,然后为列的顶部元素随机生成新颜色)。
在完成所有这些工作之后,我只是在我的适配器上调用了用于GridView的函数notifyDataSetChanged()。
问题在于行为是不可预测的。在某些设备上,它可以在某些设备上运行,它会更新所有元素并更改所有元素。有时我发现没有颜色设置似乎与优化有关,似乎我找到了解决方案......
那么,有人遇到某种问题吗?你如何达到稳定(预期)的行为? 也许你可以推荐一些其他(更简单的)解决方案或一些相关的文档/示例/课程我已经阅读了几乎所有关于GridLayouts的内容。
我很感谢您花在我的问题上的时间! 谢谢, 阿尔森
更新
以下是我使用的代码的一部分: 抱歉没有发布一些细节。
在layout.xml中
<GridView
class="<name>"
android:id="@+id/gridView1"
android:listSelector="@null"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="0dp"
android:layout_alignParentBottom="true"
android:horizontalSpacing="0dp"
android:numColumns="8"
android:padding="0dp"
android:stretchMode="columnWidth"
android:cacheColorHint="@android:color/transparent"
android:verticalSpacing="0dp" >
</GridView>
layout.simple_grid_view_element中的:
<View xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/box"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center_vertical"
/>
在扩展BaseAdapter的ImageAdapder中:
...
@Override
public View getView(int position, View convertView, ViewGroup parent) {
View v = convertView;
if (convertView == null) { // for the first time initialize each element.
LayoutInflater Inf = (LayoutInflater) mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
convertView = Inf.inflate(R.layout.simple_grid_view_element, parent, false);
v = (ImageView) convertView.findViewById(R.id.box);
WindowManager wm = (WindowManager) mContext.getSystemService(Context.WINDOW_SERVICE);
Display display = wm.getDefaultDisplay();
int width = display.getWidth();
int height = display.getHeight() - 40;
v.setLayoutParams(new GridView.LayoutParams(((int)(width)/(mEngine.ColumnNumber)), ((int)((height)/mEngine.RowNumber) - 5)));
v.setBackgroundResource( mEngine.generate_color_based_on_box_color(mEngine.TABLE.get(position)));
}
return v;
}
MainActivity中的:
....
GridView gridview = (GridView) findViewById(R.id.gridView1);
gridview.setAdapter(mEngine.getAdapter());
gridview.setVerticalScrollBarEnabled(false);
gridview.setOnItemClickListener(this);
....
@Override
public void onItemClick(AdapterView<?> parent, View view, int position,
long id) {
mEngine.RespondOnClick(parent, position);
}
在Engine类中我只是使用onItemClick函数改变给定位置的项目的背景颜色: 此函数使用辅助数组TABLE实际上用于保持颜色索引,因为View.getBackground()函数返回巨大的值,这是无法正常工作,因为JAVA没有无符号类型...(但这已经解决了)。 我调试了应用程序,并且TABLE数组中的所有更改都正确。
...
private ImageAdapter mAdapter;
...
Engine(Context mContext) {
Columns = new ArrayList<ArrayList<Integer>>(ColumnNumber);
for (int i = 0; i < ColumnNumber; ++i) {
Columns.add(new ArrayList<Integer>());
}
TABLE = new ArrayList<Integer>(ColumnNumber * RowNumber);
for (int i = 0; i < ColumnNumber * RowNumber; ++i) {
TABLE.add(i, generateRandomColor());
}
mAdapter = new ImageAdapter(mContext, this);
}
public void RespondOnClick(AdapterView<?> parent, final int position) {
CollectBoxesMarkedToRemoveByLine();
for (int i = 0; i < Columns.size(); ++i) {
while (0 != Columns.get(i).size()) {
int TopDeletedBoxPosition = Columns.get(i).get(0);
int CurrentRowValue = (TopDeletedBoxPosition / ColumnNumber);
while (0 < CurrentRowValue) {
int PrevBoxColor = TABLE.get(TopDeletedBoxPosition - ColumnNumber);
TABLE.set(TopDeletedBoxPosition, PrevBoxColor);
this.getBox(TopDeletedBoxPosition).setBackgroundResource(generate_color_based_on_box_color(PrevBoxColor));
--CurrentRowValue;
TopDeletedBoxPosition -= ColumnNumber;
}
if (0 == CurrentRowValue) {
int newColor = generateRandomColor();
TABLE.set(TopDeletedBoxPosition, newColor);
this.getBox(TopDeletedBoxPosition).setBackgroundResource(generate_color_based_on_box_color(TABLE.get(TopDeletedBoxPosition)));
}
Columns.get(i).remove(0);
}
}
...
mAdapter.notifyDataSetChanged(); // called after RespondOnClick() has done all the replacements.
答案 0 :(得分:1)
我刚刚解决了这个问题,并想分享经验。
问题的原因来自getView()函数。背景资源设置不正确。它应该适用于第一次调用函数且convertview为null的情况,以及更新gridview期间进一步调用的情况。
所以我唯一要做的就是从if-then语句移动该行:
在:
@Override
public View getView(int position, View convertView, ViewGroup parent) {
View v = convertView;
if (convertView == null) { // for the first time initialize each element.
...
v.setBackgroundResource( mEngine.generate_color_based_on_box_color(mEngine.TABLE.get(position)));
}
return v;
}
在:
@Override
public View getView(int position, View convertView, ViewGroup parent) {
View v = convertView;
if (convertView == null) { // for the first time initialize each element.
...
}
v.setBackgroundResource( mEngine.generate_color_based_on_box_color(mEngine.TABLE.get(position)));
return v;
}
希望这对某些人有用:)
干杯, 阿尔森