0

这是一个示例日历使用gridview,现在我想在日历“日”中添加新内容,所以我想我可以listview在一天中的月份使用布局,现在我有问题是如何listview在 gridvie 适配器中使用!

这是我的日历适配器部分代码

public View getView(int position, View convertView, ViewGroup parent) {
        View v = convertView;
        TextView dayView;
        if (convertView == null) {  // if it's not recycled, initialize some attributes
            LayoutInflater vi = (LayoutInflater)mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
            v = vi.inflate(R.layout.calendar_item, null);

        }
        dayView = (TextView)v.findViewById(R.id.date);
        listitem=(ListView)v.findViewById(R.id.listView1);
        // disable empty days from the beginning
        if(days[position].equals("")) {
            dayView.setClickable(false);
            dayView.setFocusable(false);
        }
        else {
            // mark current day as focused
            if(month.get(Calendar.YEAR)== selectedDate.get(Calendar.YEAR) && month.get(Calendar.MONTH)== selectedDate.get(Calendar.MONTH) && days[position].equals(""+selectedDate.get(Calendar.DAY_OF_MONTH))) {
                v.setBackgroundResource(R.drawable.item_background_focused);
            }
            else {
                v.setBackgroundResource(R.drawable.list_item_background);
            }
        }
        dayView.setText(days[position]);
        for(int t=0;t<date.size();t++){
        if(days[position]== date.get(t).get(2)){
            listitem.setAdapter(new ArrayAdapter<String>(mContext,
                    android.R.layout.simple_list_item_1));

        }
        }
        // create date string for comparison
        String date = days[position];

        if(date.length()==1) {
            date = "0"+date;
        }
        String monthStr = ""+(month.get(Calendar.MONTH)+1);
        if(monthStr.length()==1) {
            monthStr = "0"+monthStr;
        }

        // show icon if date is not empty and it exists in the items array
       // ImageView iw = (ImageView)v.findViewById(R.id.date_icon);
      /*  if(date.length()>0 && items!=null && items.contains(date)) {          
            iw.setVisibility(View.VISIBLE);
        }
        else {
            iw.setVisibility(View.INVISIBLE);
        }*/
        return v;
    }
4

1 回答 1

0

嗯,我想应该不会那么难。

而不是常规的 gridview 孩子,您需要在其中膨胀一个带有 listview 的 xml。像这样,我想。

            LayoutInflater vi = (LayoutInflater) mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
            if (showListView)
                v = vi.inflate(R.layout.listview_item, null);
            else
                v = vi.inflate(R.layout.calendar_item, null);

比这样的事情

if(showListView){
        ListView listview = (ListView) v.findViewById(R.id.listview);
        listview.setAdapter(new SuperListviewAdapter());}
        else{
            //show regular item
        } 
return v;

我还没有尝试过,但是您可能会遇到触摸事件的一些问题(例如 gridview 会消耗 listview 触摸事件?)。

于 2012-12-21T07:38:26.067 回答