0

サインアップをクリックすると、ログインページに移動します。間にプログレス サークルを表示したい。ListView などすべてについて、AsynTasks でこれを説明するスタック オーバーフローの例を見てきました。ログイン画面が読み込まれるときにサインアップボタンのクリックに遅延時間を与えることで、それを表示する非常に簡単な例が必要です。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/background"
    android:gravity="center"
    android:orientation="vertical"
    android:padding="@dimen/layout_padding" >

    <!-- To remove the focus of edit text for the first time -->

    <LinearLayout
        android:layout_width="0px"
        android:layout_height="0px"
        android:focusable="true"
        android:focusableInTouchMode="true" />

    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="@dimen/title_image_height"
        android:layout_marginTop="@dimen/title_image_margin_top"
        android:contentDescription="@string/title"
        android:src="@drawable/site_image" />

    <EditText
        android:id="@+id/editWorkEmail"
        style="@style/text.edit"
        android:layout_centerInParent="true"
        android:layout_marginBottom="@dimen/margin"
        android:hint="@string/hint_work_email"
        android:inputType="textEmailAddress" />

    <Button
        android:id="@+id/buttonSignUp"
        style="@style/button"
        android:layout_width="match_parent"
        android:layout_below="@id/editWorkEmail"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="@dimen/margin"
        android:text="@string/button_sign_up" />

    <ProgressBar
        android:id="@+id/progressBar"
        style="?android:attr/progressBarStyleLarge"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_centerInParent="true"
        android:layout_centerVertical="true"
        android:indeterminateDrawable="@drawable/progress" >

    </ProgressBar>

</RelativeLayout>
4

1 に答える 1