如何获得Listview布局如图所示?

时间:2016-01-27 13:17:57

标签: android android-layout listview

enter image description here

如何获得如上图所示的listview布局?左侧和右侧的listview is scrollable是我们点击列表视图项后获得的项目。

我搜索了很多,但我无法得到如何实现这样的布局。请指导我。

2 个答案:

答案 0 :(得分:0)

做这样的事情

<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

答案 1 :(得分:0)

该屏幕使用片段而不是ListView。正如拉古南丹所说。

您可以参考他提供的链接。

你也可以参考这个 - http://www.techotopia.com/index.php/An_Android_Master/Detail_Flow_Tutorial