0

私はこのチュートリアルに従っています http://www.linuxforu.com/2010/12/android-application-development-playing-with-sqlite-database/私のAndroidアプリケーションでログインページを使用するため、このチュートリアルでは説明がありませんパスワードを忘れました。これらの機能をアプリケーションにも追加したいと考えています。MYLogin.java

public class UserLoggedInPage extends Activity {

    /* (non-Javadoc)
     * @see android.app.Activity#onCreate(android.os.Bundle)
     */
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        // TODO Auto-generated method stub
        super.onCreate(savedInstanceState);
        setContentView(R.layout.loggedin);
    }

    /* (non-Javadoc)
     * @see android.app.Activity#onBackPressed()
     */
    @Override
    public void onBackPressed() {
        super.onBackPressed();
        Intent i = new Intent(UserLoggedInPage.this, DatabaseActivity.class);
        startActivity(i);
        finish();
    }

xml ファイル

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@drawable/background"
    >
<TextView  
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:text="@string/title"
    android:gravity="center"
    android:textSize="20sp"
    android:textColor="#000000"
    />

    <TableLayout
        android:id="@+id/layout1"
        android:layout_height="wrap_content"
        android:layout_width="fill_parent"
        android:padding="30dp"
    >
        <TableRow
            android:id="@+id/row1"
            android:layout_height="wrap_content"
            android:layout_width="fill_parent"
        >
        <TextView
            android:id="@+id/txtUsername"
            android:layout_height="wrap_content"
            android:layout_width="wrap_content"
            android:text="@string/txtUname"
            android:padding="10dp"
            android:textColor="#000000"
        ></TextView>

        <EditText
            android:id="@+id/editUsername"
            android:layout_height="wrap_content"
            android:layout_width="fill_parent"
            android:layout_weight="0.5"
            android:padding="10dp"
            style="@android:style/Widget.EditText"
            android:textColor="#000000"
        >
        </EditText>
    </TableRow>
    <TableRow
        android:id="@+id/row2"
    >
        <TextView
            android:id="@+id/txtPassword"
            android:layout_height="wrap_content"
            android:layout_width="wrap_content"
            android:text="@string/txtPassword"
            android:padding="10dp"
            android:textColor="#000000"
        ></TextView>

        <EditText
            android:id="@+id/editPassword"
            android:layout_height="wrap_content"
            android:layout_width="fill_parent"
            android:layout_weight="0.5"
            android:padding="10dp"
            style="@android:style/Widget.EditText"
            android:password="true"
            android:textColor="#000000"
        ></EditText>
    </TableRow>
    <TableRow
        android:id="@+id/row3"
        android:layout_gravity="center"
    >
        <Button
            android:id="@+id/buttonLogin"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/buttonLogin"
            android:layout_gravity="center"
            android:layout_weight="1"
        ></Button>
        <Button
            android:id="@+id/buttonNewUser"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/buttonSignUp"
            android:layout_gravity="center"
            android:layout_weight="1"
        ></Button>
    </TableRow>
    <TableRow
        android:id="@+id/row3"
        android:layout_gravity="center"
    >
        <Button
            android:id="@+id/buttonShowAll"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/buttonShowAll"
            android:layout_gravity="center"
            android:layout_weight="1"
        ></Button>
        </TableRow>
    </TableLayout>
</LinearLayout>

****Can anyone tell,how to use forgot password in my application,or give some links or tutorial to learn how to put forgot password in android,i am new to android****
4

1 に答える 1

1

「パスワードを忘れた場合」として、追加のリンク/ボタンを追加できます。このボタンをクリックすると、ユーザー名を挿入できる編集テキストを1つ提供し、ボタンをチェックして、このユーザー名がデータベースに存在するかどうかを確認する新しいアクティビティを作成します。

ユーザーが提供したユーザー名を確認し、比較して、結果を表示します。

于 2013-02-28T09:21:49.573 に答える