android - How to achive a Listview layout as shown in picture? -


enter image description here

how can listview layout shown in image above? listview scrollable on left hand side , on right side these items after clicking on listview item.

i have searched lot cannot how achieve layout this. please guide me.

do this

<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 

Comments

Popular posts from this blog

php - Wordpress website dashboard page or post editor content is not showing but front end data is showing properly -

How to get the ip address of VM and use it to configure SSH connection dynamically in Ansible -

javascript - Get parameter of GET request -