ListViewをLinearLayoutに追加したいと思います。ただし、アプリを起動すると、フォーカスが必要になり、キーボードが開きます。私はそれをしたくありません。
XMLとJavaの両方のコードを試しました。
contentLayout = (LinearLayout)findViewById(R.id.contentView);
contentList = new ListView(this);
contentList.setLayoutParams(new LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT));
contentLayout.addView(contentList);
XML
<ListView
android:id="@+id/listView1"
android:layout_width="match_parent"
android:layout_height="wrap_content">
</ListView>