LayoutInflater inflater = (LayoutInflater)getSystemService(Context.LAYOUT_INFLATER_SERVICE);
v[i]=inflater.inflate(R.layout.row, null);
mainView.add(v[i]);
動的に追加されたビューの ID を設定する権利はありますか? または、そのためのより良いオプションはありますか?
LayoutInflater inflater = (LayoutInflater)getSystemService(Context.LAYOUT_INFLATER_SERVICE);
v[i]=inflater.inflate(R.layout.row, null);
mainView.add(v[i]);
動的に追加されたビューの ID を設定する権利はありますか? または、そのためのより良いオプションはありますか?