android基礎知識複習(二)——RelativeLayout布局屬性、背景、半透明設定(XML設定)

來源:互聯網
上載者:User

 

 複習布局與XML,寫了一個空的登入介面。XML的注釋我寫在當行的後面了。程式運行圖:

 

 

主函數沒有改動,不貼了。背景圖片名為:background.jpg 。看看main.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"         //設定背景    >    <LinearLayout android:id="@+id/empty"             //佔位用的layout    android:layout_width="fill_parent"        android:layout_height="wrap_content"      android:layout_weight ="1"></LinearLayout>   //設定佔總權重的比例         <RelativeLayout  android:id="@+id/relativeLayout"      android:layout_width="fill_parent"     android:layout_height="wrap_content"     android:layout_weight="2"      android:padding="10px">                     //設定內間距       /*顏色和不透明度 (alpha) 值以十六進位標記法表示。任何一種顏色的值範圍都是 0 到 255(00 到 ff)。對於 alpha,00 表示完全透明,ff 表示完全不透明。運算式順序是“aabbggrr”,其中“aa=alpha”(00 到 ff);“bb=blue”(00 到 ff);“gg=green”(00 到 ff);“rr=red”(00 到 ff)。例如,如果您希望對某疊加層應用不透明度為 50% 的藍色,則應指定以下值:7fff0000 */     <TextView      android:id="@+id/user"     android:text="使用者名稱: "     android:layout_width="fill_parent"     android:layout_height="wrap_content"     android:textColor="#ffffffff" />                <EditText  android:id="@+id/username"     android:layout_width="fill_parent"     android:layout_height="wrap_content"      android:layout_below="@id/user"      //在id為user的控制項之下     android:background="#88ffffff"/>     //設定不透明           <TextView      android:id="@+id/key"     android:layout_width="fill_parent"     android:layout_height="wrap_content"      android:text="密碼:"     android:layout_below="@id/username"     android:textColor="#ffffffff" />          <EditText  android:id="@+id/keyword"     android:layout_width="fill_parent"     android:layout_height="wrap_content"      android:layout_below="@id/key"     android:background="#88ffffff"     android:password="true"/>          <CheckBox   android:id="@+id/remember"      android:layout_height="wrap_content"        android:layout_width="wrap_content"      android:text="記住密碼"      android:layout_below="@id/keyword"      android:layout_alignLeft="@id/keyword"     android:layout_marginLeft="15px"/>     //外間距            <CheckBox   android:id="@+id/autoin"      android:layout_height="wrap_content"        android:layout_width="wrap_content"      android:text="自動登入"      android:layout_below="@id/keyword"      android:layout_alignRight="@id/keyword"    //與id為keyword的控制項靠右對齊     android:layout_marginRight="15px"/>          <Button android:id="@+id/enter"     android:layout_height="wrap_content"        android:layout_width="fill_parent"     android:gravity="center_horizontal"    //內部文字位置     android:text="登      錄"     android:layout_below="@id/autoin"     android:layout_margin="10px"/>          </RelativeLayout>    </LinearLayout>

 

 

     本篇部落格出自  阿修羅道,轉載請註明出處:http://blog.csdn.net/fansongy/article/details/6817968

 

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.