久久国产成人av_抖音国产毛片_a片网站免费观看_A片无码播放手机在线观看,色五月在线观看,亚洲精品m在线观看,女人自慰的免费网址,悠悠在线观看精品视频,一级日本片免费的,亚洲精品久,国产精品成人久久久久久久

分享

android登錄界面

 閱知人生百態(tài) 2014-12-21

 

\

  這個(gè)Demo除了按鈕,、小貓和Logo是圖片素材之外,其余的UI都是通過(guò)代碼實(shí)現(xiàn)的,。

 


  一,、背景

  背景藍(lán)色漸變,是通過(guò)一個(gè)xml文件來(lái)設(shè)置的,。代碼如下:

  background_login.xml


[html]
 <?xml version="1.0" encoding="utf-8"?> 
<shape xmlns:android="http://schemas./apk/res/android"> 
    <gradient  
        android:startColor="#FFACDAE5" 
        android:endColor="#FF72CAE1" 
        android:angle="45" 
    /> 
</shape> 

  startColor是漸變開(kāi)始的顏色值,,endColor是漸變結(jié)束的顏色值,angle是漸變的角度,。其中#FFACDAE5中,,F(xiàn)F是Alpha值,AC是RGB的R值,,DA是RGB的G值,,E5是RGB的B值,每個(gè)值在00~FF取值,,即透明度,、紅、綠,、藍(lán)有0~255的分值,,像要設(shè)置具體的顏色,可以在PS上的取色器上查看設(shè)置,。

 

  二,、圓角白框

  效果圖上面的并不是白框,其實(shí)框是白色的,,只是設(shè)置了透明值,,也是靠一個(gè)xml文件實(shí)現(xiàn)的。

  background_login_div.xml


[html]
 <?xml version="1.0" encoding="UTF-8"?> 
<shape xmlns:android="http://schemas./apk/res/android"> 
    <solid android:color="#55FFFFFF" /> 
    <!-- 設(shè)置圓角 
    注意: bottomRightRadius是左下角而不是右下角  bottomLeftRadius右下角--> 
    <corners android:topLeftRadius="10dp" android:topRightRadius="10dp" 
        android:bottomRightRadius="10dp" android:bottomLeftRadius="10dp"/> 
</shape> 

 


  三,、界面的布局

  界面的布局挺簡(jiǎn)單的,,就直接貼代碼啦~

  login.xml


[html]
 <?xml version="1.0" encoding="utf-8"?> 
<LinearLayout 
    xmlns:android="http://schemas./apk/res/android" 
    android:orientation="vertical" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:background="@drawable/background_login"> 
    <!-- padding 內(nèi)邊距   layout_margin 外邊距 
        android:layout_alignParentTop 布局的位置是否處于頂部 --> 
         
    <RelativeLayout  
        android:id="@+id/login_div" 
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content" 
        android:padding="15dip"         
        android:layout_margin="15dip"  
        android:background="@drawable/background_login_div_bg" > 
        <!-- 賬號(hào) --> 
        <TextView  
            android:id="@+id/login_user_input" 
            android:layout_width="wrap_content" 
            android:layout_height="wrap_content" 
            android:layout_alignParentTop="true" 
            android:layout_marginTop="5dp" 
            android:text="@string/login_label_username" 
            style="@style/normalText"/> 
        <EditText  
            android:id="@+id/username_edit" 
            android:layout_width="fill_parent" 
            android:layout_height="wrap_content" 
            android:hint="@string/login_username_hint" 
            android:layout_below="@id/login_user_input" 
            android:singleLine="true" 
            android:inputType="text"/> 
        <!-- 密碼 text --> 
        <TextView  
            android:id="@+id/login_password_input" 
            android:layout_width="wrap_content" 
            android:layout_height="wrap_content" 
            android:layout_below="@id/username_edit" 
            android:layout_marginTop="3dp" 
            android:text="@string/login_label_password" 
            style="@style/normalText"/> 
        <EditText  
            android:id="@+id/password_edit" 
            android:layout_width="fill_parent" 
            android:layout_height="wrap_content" 
            android:layout_below="@id/login_password_input" 
            android:password="true" 
            android:singleLine="true" 
            android:inputType="textPassword" /> 
        <!-- 登錄button --> 
        <Button  
            android:id="@+id/signin_button" 
            android:layout_width="wrap_content" 
            android:layout_height="wrap_content" 
            android:layout_below="@id/password_edit" 
            android:layout_alignRight="@id/password_edit" 
            android:text="@string/login_label_signin" 
            android:background="@drawable/blue_button" /> 
    </RelativeLayout> 
   
    <RelativeLayout  
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content" > 
         <TextView  android:id="@+id/register_link" 
             android:text="@string/login_register_link" 
             android:layout_width="wrap_content" 
             android:layout_height="wrap_content" 
             android:layout_marginLeft="15dp" 
             android:textColor="#888" 
             android:textColorLink="#FF0066CC" /> 
        <ImageView android:id="@+id/miniTwitter_logo" 
            android:src="@drawable/cat" 
            android:layout_width="wrap_content" 
            android:layout_height="wrap_content" 
            android:layout_alignParentRight="true" 
            android:layout_alignParentBottom="true" 
            android:layout_marginRight="25dp" 
            android:layout_marginLeft="10dp" 
            android:layout_marginBottom="25dp" /> 
        <ImageView android:src="@drawable/logo" 
            android:layout_width="wrap_content" 
            android:layout_height="wrap_content" 
            android:layout_toLeftOf="@id/miniTwitter_logo" 
            android:layout_alignBottom="@id/miniTwitter_logo" 
            android:paddingBottom="8dp"/> 
    </RelativeLayout> 
</LinearLayout> 

 


  四、Java源文件

  Java源文件比較簡(jiǎn)單,,只是實(shí)例化Activity,,去掉標(biāo)題欄。


[java]
 package com.mytwitter.acitivity; 
 
import android.app.Activity; 
import android.os.Bundle; 
import android.view.Window; 
 
public class LoginActivity extends Activity { 
    @Override 
    public void onCreate(Bundle savedInstanceState) { 
        super.onCreate(savedInstanceState); 
        requestWindowFeature(Window.FEATURE_NO_TITLE); 
        setContentView(R.layout.login); 
    } 

    本站是提供個(gè)人知識(shí)管理的網(wǎng)絡(luò)存儲(chǔ)空間,,所有內(nèi)容均由用戶發(fā)布,,不代表本站觀點(diǎn)。請(qǐng)注意甄別內(nèi)容中的聯(lián)系方式、誘導(dǎo)購(gòu)買(mǎi)等信息,,謹(jǐn)防詐騙,。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊一鍵舉報(bào),。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評(píng)論

    發(fā)表

    請(qǐng)遵守用戶 評(píng)論公約