我想在其他两个布局之间有一个 ListView,但我没有找到任何示例......我可以在 ListActivity 中创建一个 ListView,但它对我想要实现的目标没有帮助
//main_layout.xml
<LinearLayout vertical>
<LinearLayout horizontal>
<Spinners and Buttons here>
</LinearLayout>
**<LISTVIEW HERE">**
<LinearLayout horizontal>
<More Buttons etc>
</LinearLayout>
</LinearLayout>
这会让我的主要活动看起来如何?(目前它只是 setContentView(main_layout) 等。)我需要创建另一个类并将列表片段子类化吗?如何?
谢谢你的帮助