激情五月天婷婷,亚洲愉拍一区二区三区,日韩视频一区,a√天堂中文官网8

<ul id="buwfs"><strike id="buwfs"><strong id="buwfs"></strong></strike></ul>
    <output id="buwfs"></output>
  • <dfn id="buwfs"><source id="buwfs"></source></dfn>
      <dfn id="buwfs"><td id="buwfs"></td></dfn>
      <div id="buwfs"><small id="buwfs"></small></div>
      <dfn id="buwfs"><source id="buwfs"></source></dfn>
      1. <dfn id="buwfs"><td id="buwfs"></td></dfn>
        始創(chuàng)于2000年 股票代碼:831685
        咨詢熱線:0371-60135900 注冊(cè)有禮 登錄
        • 掛牌上市企業(yè)
        • 60秒人工響應(yīng)
        • 99.99%連通率
        • 7*24h人工
        • 故障100倍補(bǔ)償
        全部產(chǎn)品
        您的位置: 網(wǎng)站首頁 > 幫助中心>文章內(nèi)容

        使用線性布局(LinearLayout)來布局屏幕

        發(fā)布時(shí)間:  2012/8/27 17:21:16

        第1章 UI布局開發(fā)實(shí)例集錦

        外觀向來是工業(yè)產(chǎn)品的設(shè)計(jì)核心,是激發(fā)用戶購買欲望的主要因素之一。本章講的UI布局指的是手機(jī)界面布局,一款手機(jī)的屏幕界面效果是吸引用戶購買的重要元素之一,因?yàn)橄M(fèi)者更傾向于選擇界面美觀的產(chǎn)品。在設(shè)計(jì)優(yōu)美的界面之前,一定要先對(duì)屏幕進(jìn)行布局。本章將使用具體實(shí)例的實(shí)現(xiàn)過程介紹在Android系統(tǒng)中規(guī)劃UI界面的方法。

        實(shí)例001:使用線性布局(LinearLayout)來布局屏幕

        源碼路徑:daima\001

        知識(shí)點(diǎn)介紹

        在Android布局中,需要了解視圖容器組件-ViewGroup的概念,使用視圖容器組件ViewGroup的語法格式如下:
         

        1. ndroid.view.Viewgroup 

        ViewGroup的功能是包含并管理下級(jí)系列的Views和其他ViewGroup,是一個(gè)布局的基類。類ViewGroup好像一個(gè)View容器,負(fù)責(zé)對(duì)添加進(jìn)來的View進(jìn)行布局處理。一個(gè)ViewGroup可以添加到另一個(gè)ViewGroup中去。這是因?yàn)閂iewGroup也繼承于View.Viewgroup類,是其他容器類的基類。它們之間的關(guān)系如圖1-1所示。
         

         
        圖1-1  各個(gè)類的繼承關(guān)系

        我們知道,一個(gè)Android程序是由一個(gè)或多個(gè)Activity組成的,每個(gè)Activity是一個(gè)UI容器,Activity本身不在用戶界面中顯示出來。在Android中,類View起了一個(gè)非常重要的作用,View是一個(gè)最基本的UI類,幾乎所有的UI組件都是繼承于View而實(shí)現(xiàn)的。

        使用View的語法格式如下所示。
         

        1. android.view.View 

        線性布局即LinearLayout布局,是Android屏幕中常用的布局方式之一,功能是垂直地或水平地顯示ViewGroup的子視圖(View)元素。

        具體實(shí)現(xiàn)

        使用Eclipse創(chuàng)建一個(gè)名為"001"的Android工程。

        編寫布局文件"res/layour/main.xml",代碼如下所示。

        1. <?xml version="1.0" encoding="utf-8"?>   
        2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"   
        3.               android:layout_width="fill_parent"   
        4.               android:layout_height="fill_parent"   
        5.               android:orientation="horizontal"> 
        6.     <Button android:id="@+id/button1"   
        7.             android:layout_width="wrap_content"   
        8.             android:layout_height="wrap_content"              
        9.             android:text="第一個(gè)按鈕"   
        10.             android:layout_weight="1"   
        11.             />   
        12.     <Button android:id="@+id/button2"   
        13.     android:layout_width="wrap_content"   
        14.     android:layout_height="wrap_content"   
        15.     android:text="第二個(gè)按鈕"   
        16.     android:layout_weight="1"   
        17.     />   
        18.     <Button android:id="@+id/button3"   
        19.     android:layout_width="wrap_content"   
        20.     android:layout_height="wrap_content"   
        21.     android:text="第三個(gè)按鈕"   
        22.     android:layout_weight="1"   
        23.     />   
        24.     <Button android:id="@+id/button4"   
        25.     android:layout_width="wrap_content"   
        26.     android:layout_height="wrap_content"   
        27.     android:text="第四個(gè)按鈕"   
        28.     android:layout_weight="1"   
        29.     />   
        30.     <Button android:id="@+id/button5"   
        31.     android:layout_width="wrap_content"   
        32.     android:layout_height="wrap_content"   
        33.     android:text="第五個(gè)按鈕"   
        34.     android:layout_weight="1"   
        35.     />   
        36. </LinearLayout> 

        在上述代碼中,在根LinearLayout視圖組(ViewGroup)中包含了5個(gè)按鈕(Button),它的子元素是以線性方式水平布局的。上述代碼的運(yùn)行效果如圖1-2所示。
         


        本文出自:億恩科技【mszdt.com】

        服務(wù)器租用/服務(wù)器托管中國五強(qiáng)!虛擬主機(jī)域名注冊(cè)頂級(jí)提供商!15年品質(zhì)保障!--億恩科技[ENKJ.COM]

      2. 您可能在找
      3. 億恩北京公司:
      4. 經(jīng)營性ICP/ISP證:京B2-20150015
      5. 億恩鄭州公司:
      6. 經(jīng)營性ICP/ISP/IDC證:豫B1.B2-20060070
      7. 億恩南昌公司:
      8. 經(jīng)營性ICP/ISP證:贛B2-20080012
      9. 服務(wù)器/云主機(jī) 24小時(shí)售后服務(wù)電話:0371-60135900
      10. 虛擬主機(jī)/智能建站 24小時(shí)售后服務(wù)電話:0371-60135900
      11. 專注服務(wù)器托管17年
        掃掃關(guān)注-微信公眾號(hào)
        0371-60135900
        Copyright© 1999-2019 ENKJ All Rights Reserved 億恩科技 版權(quán)所有  地址:鄭州市高新區(qū)翠竹街1號(hào)總部企業(yè)基地億恩大廈  法律顧問:河南亞太人律師事務(wù)所郝建鋒、杜慧月律師   京公網(wǎng)安備41019702002023號(hào)
          0
         
         
         
         

        0371-60135900
        7*24小時(shí)客服服務(wù)熱線