Text

Sunday, 10 May 2015

form_view untuk menampilkan data di android sebagai pelengkap form row

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical" >
    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal" >
        <TextView
            android:layout_width="58dp"
            android:layout_height="wrap_content"
            android:layout_weight="0.15"
            android:background="#dddddd"
            android:text="NIM" />
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="0.61"
            android:background="#dddddd"
            android:text="Nama" />
        <TextView
            android:layout_width="106dp"
            android:layout_height="wrap_content"
            android:background="#dddddd"
            android:text="Alamat" />
    </LinearLayout>
    <ListView
        android:id="@android:id/list"
        android:layout_width="wrap_content"
        android:layout_height="match_parent" >
    </ListView>
</LinearLayout>

No comments:

Post a Comment