【发布时间】:2016-01-27 13:17:56
【问题描述】:
【问题讨论】:
-
看起来像一个主细节视图。可以在片段的帮助下实现
-
@Raghunandan 你能解释一下吗..!!谢谢
-
旁白:“Seasonings”在您的应用中拼写错误。
标签: android android-layout listview
【问题讨论】:
标签: android android-layout listview
做这样的事情
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
//////ListView
</LinearLayout>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
///It's detail
</LinearLayout>
</LinearLayout>
put these in scroll view
【讨论】:
该屏幕使用片段而不是 ListView。正如拉古南丹所说。
你可以参考他提供的链接。
你也可以参考这个——http://www.techotopia.com/index.php/An_Android_Master/Detail_Flow_Tutorial
【讨论】: