的Android工作室0.2.11創建花哨的登錄框
我是新來的Android編程,只是想知道我需要做的創建類似下面的一個奇特的登錄框。我不是要求任何人爲我做。但是,我需要什麼樣的控制來幫助這樣的事情呢?
非常感謝您的任何建議,
的Android工作室0.2.11創建花哨的登錄框
我是新來的Android編程,只是想知道我需要做的創建類似下面的一個奇特的登錄框。我不是要求任何人爲我做。但是,我需要什麼樣的控制來幫助這樣的事情呢?
非常感謝您的任何建議,
我在這裏給你一些透明的佈局,您的要求的嘗試設置與你的背景活動..
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:background="#60000000"
android:padding="10dp" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_marginBottom="20dp"
android:background="#40000000"
android:text="Sign In" />
<EditText
android:id="@+id/editText2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/editText1"
android:layout_centerHorizontal="true"
android:layout_marginTop="25dp"
android:background="#40000000"
android:ems="10" />
<EditText
android:id="@+id/editText1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/editText2"
android:layout_below="@+id/textView1"
android:background="#40000000"
android:ems="10" >
<requestFocus />
</EditText>
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/editText2"
android:layout_centerHorizontal="true"
android:layout_marginBottom="20dp"
android:layout_marginTop="20dp"
android:background="#40000000"
android:text="Button" />
</RelativeLayout>
這很容易,一旦你熟悉的LinearLayout和RelativeLayout的來來達到的。
Here is a cloning of the higlight login screen.
這在UI的設計幫助我很多。希望你也發現它有用。
我會做這樣的:
setContentView
作爲兩個EditText小部件和TextView的'忘記...'show
之前獲得該按鈕。一旦你把按鈕當做Button對象,你可以用綠色裝飾它。
你的情況,你必須使用TextView的,ImageView的,EditText,Button和LinearLayout ... –
你想讓它成爲一個彈出登錄框嗎? – CENT1PEDE
@Haresh是正確的,eveything應該定製。 – CENT1PEDE