Drop Down MenusCSS Drop Down MenuPure CSS Dropdown Menu

Minggu, 14 Desember 2014

Belajar Pemrogramman android - Linear layout

10.24 Posted by ibidathoillah No comments
Linear layout, seperti artinya susunan lurus berrati seluruh item yang berada pada linear layout akan tersusun lurus coba tuliskan code ini pada layout aktivitas utama di /res/layout/<layout utama>.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:gravity="top"
    android:orientation="vertical">

    <LinearLayout
        android:layout_height="wrap_content"
        android:layout_width="wrap_content"
        android:orientation="horizontal">

        <Button
            android:layout_height="wrap_content"
            android:text="H"
            android:layout_width="wrap_content"/>

        <Button
            android:layout_height="wrap_content"
            android:text="O"
            android:layout_width="wrap_content"/>

        <Button
            android:layout_height="wrap_content"
            android:text="R"
            android:layout_width="wrap_content"/>

        <Button
            android:layout_height="wrap_content"
            android:text="I"
            android:layout_width="wrap_content"/>

        <Button
            android:layout_height="wrap_content"
            android:text="Z"
            android:layout_width="wrap_content"/>

        <Button
            android:layout_height="wrap_content"
            android:text="O"
            android:layout_width="wrap_content"/>

        <Button
            android:layout_height="wrap_content"
            android:text="N"
            android:layout_width="wrap_content"/>

    </LinearLayout>

    <LinearLayout
        android:layout_height="wrap_content"
        android:layout_width="wrap_content"
        android:orientation="vertical">

        <Button
            android:layout_height="wrap_content"
            android:text="V"
            android:layout_width="wrap_content"/>

        <Button
            android:layout_height="wrap_content"
            android:text="E"
            android:layout_width="wrap_content"/>

        <Button
            android:layout_height="wrap_content"
            android:text="R"
            android:layout_width="wrap_content"/>

        <Button
            android:layout_height="wrap_content"
            android:text="T"
            android:layout_width="wrap_content"/>

        <Button
            android:layout_height="wrap_content"
            android:text="I"
            android:layout_width="wrap_content"/>

        <Button
            android:layout_height="wrap_content"
            android:text="C"
            android:layout_width="wrap_content"/>

        <Button
            android:layout_height="wrap_content"
            android:text="A"
            android:layout_width="wrap_content"/>

        <Button
            android:layout_height="wrap_content"
            android:text="L"
            android:layout_width="wrap_content"/>

    </LinearLayout>

</LinearLayout>

Hasil :
Berdasarkan dari gambar dan code diatas tombol H-O-R-I-Z-O-N-T-A-L yang diapit oleh linear layout yang berorientasi horizontal maka menghasilkan susunan tombol lurus secara horizontal
Sedangkan orientasi vertical akan membuat tombol bersusunan lurus secara vertical

Tidak ada komentar:

Posting Komentar