Text

Sunday, 10 May 2015

form_row untuk desain tampil data di android

<?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="horizontal" >
    <TextView
        android:id="@+id/nim"
        android:layout_width="60px"
        android:layout_height="wrap_content"
        android:layout_weight="1" />
    <TextView
        android:id="@+id/nama"
        android:layout_width="90px"
        android:layout_height="wrap_content"
        android:layout_weight="1" />
    <TextView
        android:id="@+id/alamat"
        android:layout_width="90px"
        android:layout_height="wrap_content"
        android:layout_weight="1" />
</LinearLayout>

No comments:

Post a Comment