列表視圖的列之間繪製垂直線這裏我創建一個由多列列表視圖組成的android應用程序。通過這個多列列表視圖,我想通過在它們之間繪製垂直線來分隔每列的數據。任何一個可以告訴我如何繪製列表視圖columns.Thanks之間的垂直線提前如何在android
這是我的列表視圖佈局
<RelativeLayout 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"
tools:context="com.developer.milanandroid.AC_fuse_ckt" >
<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="match_parent"
android:layout_height="35dp"
android:layout_below="@+id/pager_sliding_tab_strip"
android:weightSum="4" >
<TextView
android:id="@+id/txt_s.no"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_marginLeft="30dp"
android:text="sno"
android:textSize="20dp" />
<TextView
android:id="@+id/txt_test_point_name"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_marginLeft="100dp"
android:text="Pointname"
android:textSize="20dp" />
<TextView
android:id="@+id/txt_Description"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_marginLeft="120dp"
android:text="Description"
android:textSize="20dp" />
<TextView
android:id="@+id/txt_Range"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_marginLeft="110dp"
android:text="Range"
android:textSize="20dp" />
<TextView
android:id="@+id/txt_Measurement"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_marginLeft="80dp"
android:text="Result"
android:textSize="20dp" />
</LinearLayout>
<View android:id="@+id/view_1"
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="#BDBDBD"
android:layout_below="@+id/linearLayout1"/>
<ListView
android:id="@+id/listView_bc_fuse_ckt_tests"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:padding="20dp"
android:layout_below="@+id/linearLayout1" >
</ListView>
</RelativeLayout>
您可以使用'GridView'代替'ListView'代碼 –
您能否提供包含'ListView'的佈局文件?你使用多個'ListView'還是將每個ListItem中的列分開? – AlexWalterbos
感謝您的回覆。但是,在這裏我想使用列表視圖是可能的與列表視圖@SandeepSingh – dEePU