alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Android example source code file (usb_storage_activity.xml)

This example Android source code file (usb_storage_activity.xml) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Android by Example" TM.

Java - Android tags/keywords

button, imageview, linearlayout, progressbar, relativelayout, textview

The usb_storage_activity.xml Android example source code

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/main"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:gravity="center"
    android:padding="18dip"
    android:orientation="horizontal"
    >

    <ImageView android:id="@+id/icon"
        android:layout_centerHorizontal="true"
        android:layout_alignParentTop="true"
        android:layout_height="wrap_content"
        android:layout_width="0dip"
        android:layout_weight="1"
        android:src="@drawable/usb_android" />

    <RelativeLayout 
        android:layout_height="wrap_content"
        android:layout_width="0dip"
        android:layout_weight="1"
        >

        <TextView android:id="@+id/banner"
            android:layout_centerHorizontal="true"
            android:layout_alignParentTop="true"
            android:layout_marginTop="10dip"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:textSize="24sp"
            android:gravity="center"
            android:text="@string/usb_storage_title" />

        <TextView android:id="@+id/message"
            android:layout_below="@id/banner"
            android:layout_marginTop="10dip"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:textSize="14sp"
            android:gravity="center"
            android:text="@string/usb_storage_message" />

        <RelativeLayout
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerHorizontal="true"
            android:layout_alignParentBottom="true"
            android:layout_marginBottom="20dip"
            >

            <Button android:id="@+id/mount_button" 
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:paddingLeft="18dip"
                android:paddingRight="18dip"
                android:text="@string/usb_storage_button_mount"
                />
            <Button android:id="@+id/unmount_button"
                android:visibility="gone"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:paddingLeft="18dip"
                android:paddingRight="18dip"
                android:text="@string/usb_storage_stop_button_mount"
                />
            <ProgressBar android:id="@+id/progress"
                android:visibility="gone"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:indeterminate="true"
                style="?android:attr/progressBarStyle"
                />

        </RelativeLayout>
    </RelativeLayout>
</LinearLayout>

Other Android examples (source code examples)

Here is a short list of links related to this Android usb_storage_activity.xml source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.