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

まあ、そんなに難しくないはずです。

通常のグリッドビューの子の代わりに、リストビューを含む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;

私はこれを試していませんが、タッチ イベントで問題が発生する可能性があります (グリッドビューがリストビューのタッチ イベントを消費するなど)。

于 2012-12-21T07:38:26.067 に答える