Android网格视图单元格背景更改

时间:2015-03-09 01:10:21

标签: android gridview textview getview

在滚动时让GridView保持数据一致性时遇到问题。基本上,我正在研究一个简单的宾果应用程序,我希望能够在屏幕上滚动,以便用户可以看到完整的5x5网格。我一直在使用这个问题试图弄清楚发生了什么(Android: Replacing images in GridView array after OnItemClick)如果我理解正确,我需要修改getView()以不为每个单元格使用循环视图。 以下是我到目前为止的情况:

    protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    setContentView(R.layout.activity_main);
    final GridView gridview = (GridView) findViewById(R.id.gridview);
    final Bingo bingo = new Bingo();
    final String[] stuff = new String[25];
    for (int i=0;i<25;i++){
        stuff[i]=bingo.getValue(i);
    }
    stuff[12]="Free Space";

    ArrayAdapter<String> adapter = new ArrayAdapter<String>(this,
         android.R.layout.simple_list_item_1, stuff);


    gridview.setOnItemClickListener(new OnItemClickListener() {
        public void onItemClick(AdapterView<?> parent, View v, int position, long id) {

           bingo.open(position);
           if (bingo.isOpen(position))
           v.setBackgroundColor(Color.rgb(12, 15, 204));
           else
           v.setBackgroundColor(Color.rgb(128, 128, 128));


            if (bingo.bingo()==true){
                Toast.makeText(getApplicationContext(),
                        //((TextView) v).getText(),
                        "BINGO",Toast.LENGTH_SHORT).show();
            }
        }
    });
}

这段代码很有效。背景改变,它与我的宾果游戏类接口很好,但滚动时,随机细胞会改变颜色,有时细胞值会消失,留下空白。我在适配器声明后尝试了以下代码,但它一旦在设备上加载就会崩溃。

   {
            public View getView(int position, View convertView, ViewGroup                                    parent){
            Context mContext = null;
            TextView textView= new TextView(mContext);
            if (convertView == null) {  


           textView.setText(stuff[12]);
            } else {
                textView = (TextView) convertView;
            }

            if (bingo.isOpen(position))
                textView.setBackgroundColor(Color.rgb(12, 15, 204));
            else
                textView.setBackgroundColor(Color.rgb(128, 128, 128));

            return textView;
        }
    };

我只是在弄清楚如何使这个工作用于文本视图时遇到问题。对此的任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:0)

使用空上下文创建文本视图,以便发生错误

public View getView(int position, View convertView, ViewGroup parent){ 
        // here you declare the context is null
        // Context mContext = null;         
        TextView textView;
        if (convertView == null) {  
            // error occurs because the context is null
            // TextView textView= new TextView(mContext); 
            // so try to use
            textView = new TextView(parent.getContext()); 
            textView.setText(stuff[12]);
        } else {
            textView = (TextView) convertView;
        }

        if (bingo.isOpen(position))
            textView.setBackgroundColor(Color.rgb(12, 15, 204));
        else
            textView.setBackgroundColor(Color.rgb(128, 128, 128));

        return textView;
}