2013-11-24 241 views
-9

我是新devlper Android應用程序Android登錄屏幕

所以我的應用程序關於我的公司。我的應用程序有登錄屏幕的佈局。我公司 的coustmer有用戶名和密碼。

所以我想login_screen.xml,我的公司網站登錄屏幕相同。

在login_screen.xml

1 EDITTEXT爲Usermame &密碼 2-按鈕登錄

誰能幫助我該怎麼辦呢

或者給我一個tutrial

非常感謝>

+1

http://developer.android.com/training/basics/firstapp/building-ui.html – slhck

+0

這不是登錄畫面,我需要同Facebook或Twitter登錄屏幕 – user3020391

+1

無論你正在做一個登錄界面或簡單的活動並不重要。你只需要以不同的方式進行設計。當然,默認的Android樣式看起來並不像登錄屏幕開始 - 您必須應用您的顏色,徽標等等。請注意,我們希望問題能夠顯示對解決問題的最少理解和研究。請說明你已經完成了什麼以及你卡在哪裏。 – slhck

回答

2

下面是一個示例代碼,它將幫助您開始使用。根據您的需求做出更改:

<?xml version="1.0" encoding="utf-8"?> 
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:fillViewport="true" > 

<RelativeLayout 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" > 

<!-- Logo Start --> 
<ImageView 
    android:id="@+id/logo" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_centerHorizontal="true" 
    android:src="@drawable/ic_launcher" /> 
<!-- Place your company logo in the src attribute --> 
<!-- Logo Ends --> 


<!-- Login Form --> 

<LinearLayout 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:layout_below="@id/logo" 
    android:orientation="vertical" 
    android:padding="10dip" > 

    <!-- Username Label --> 
<TextView 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:text="Username" /> 

<EditText 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:layout_marginBottom="20dip" 
    android:layout_marginTop="5dip" 
    android:singleLine="true" /> 

<!-- Password Label --> 
<TextView 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:text="Password" /> 

<EditText 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:layout_marginTop="5dip" 
    android:password="true" 
    android:singleLine="true" /> 


<!-- Login button --> 
<Button 
     android:id="@+id/btnLogin" 
     android:layout_width="fill_parent" 
     android:layout_height="wrap_content" 
     android:layout_marginTop="10dip" 
     android:text="Login" /> 
</LinearLayout> 
<!-- Login Form Ends --> 

    </RelativeLayout> 

</ScrollView> 

希望這會有所幫助。

乾杯!

+0

和class文件?! – user3020391

+0

@ user3020391我相信在閱讀了一些教程並嘗試了一些東西之後,您可以自己想出這些。 – slhck

+0

@ user3020391這裏有數百個教程和示例代碼。如果您在Google上搜索時感到有點痛苦,您會很容易找到它。無論如何,這裏是一個關於如何實現登錄功能的教程:http://techblogon.com/android-login-registration-screen-with-sqlite-database-example/ – JoelFernandes