2011-02-02 9 views
0

私はいくつかのカレンダーを実行しようとします。私はそれをGridViewカスタムアダプタとしています。 アダプターの組み合わせ方法2 TextView(日付とテキスト)とアイコン(赤丸)?GridViewのカスタムアダプタ

(screen for example)

+0

'GridView'の各項目のレイアウトとしてカスタムアダプターやXMLのコードを追加できますか? –

答えて

4

あなたは、各項目の(アイコンのImageViewと2 TextViews付き)レイアウトを作成し、あなたのadaptergetView()方法でビューにレイアウトを膨らませる必要があります。何かのように

View getView(int position, View convertView, ViewGroup parent) { 
    if(convertView == null) { // recycled view is null so create it. 
      convertView = View.inflate(context, R.id.layout, parent); 
    } 
    ImageView imageView = convertView.findViewById(R.id.image); 
    TextView tv1 = convertView.findViewById(R.id.text1); 
    ... 
} 
+0

view = mInflater.inflate(R.layout.layout_file、null); convertView = View.inflate(context、R.id.layout、parent)ではなく、 – Yar

関連する問題