ListView
を使用して作成していLinearLayout
ます。このリストを 内に配置したいので、これを行っていScrollView
ます。でリストを作成する方法は次のとおりLinearLayout
です。
adapter = new BookingSessionListAdapter(this,null, appDeleg);
LinearLayout ll = (LinearLayout)this.findViewById(R.id.listLayout);
LinearLayout.LayoutParams layoutParams =
newLinearLayout.LayoutParams(LinearLayout.LayoutParams.FILL_PARENT,
LinearLayout.LayoutParams.WRAP_CONTENT);
for (int i = 0; i < adapter.getCount(); i++)
{
View item = adapter.getView(i, null, null);
ll.addView(item,layoutParams);
}
ここで、リストを更新したいと思います。これどうやってするの?
ありがとう