版權說明:本文檔由用戶提供并上傳,收益歸屬內容提供方,若內容存在侵權,請進行舉報或認領
文檔簡介
附錄I英文原文BeginningAndroid. UsingXML-BasedLayoutsWhileitistechnicallypossibletocreateandattachwidgetstoouractivitypurelythroughJavacode,thewaywedidinChapter4,themorecommonapproachistouseanXML-basedlayoutfile.Dynamicinstantiationofwidgetsisreservedformorecomplicatedscenarios,wherethewidgetsarenotknownatcompile-time(eg.,populatingacolumnofradiobuttonsbasedondataretrievedofftheInternet).Withthatinmind,itimetobreakouttheXMLandlearnhowtolayoutAndroidactivitiesthatway.1 WhatIsanXML-BasedLayout?Asthenamesuggests,anXML-basedlayoutisaspecificationofwidgetslationshipstoeachother—andtotheircontainers(moreonthisinChapter7)—encodedinXMLformat.Specifically,AndroidconsidersXML-basedlayoutstoberesources,andassuchlayoutfilesarestoredintheresyoutdirectoryinsideyourAndroidproject.EachXMLfilecontainsatreeofelementsspecifyingalayoutofwidgetsandtheircontainersthatmakeuponeviewhierarchy.TheattributesoftheXMLelementsareproperties,describinghowawidgetshouldlookorhowacontainershouldbehave.Forexample,ifaButtonelementhasanattributevalueofandroid:textStyle="bold",thatmeansthatthetextappearingonthefaceofthebuttonshouldberenderedinaboldfacefontstyle.ASDKshipswithatool(aapt)whichusesthelayouts.ThistoolshouldbeautomaticallyinvokedbyyourAndroidtoolchain(e.g.,Eclipse,Abuild.xml).OfparticularimportancetoyouasadeveloperisthataaptgeneratestheR.javasourcefilewithinyourproject,allowingyoutoaccesslayoutsandwidgetswithinthoselayoutsdirectlyfromyourJavacode.2 WhyUseXML-BasedLayouts?MosteverythingyoudousingXMLlayoutfilescanbeachievedthroughJavacode.Forexample,youcouldusesetTypeface()tohaveabuttonrenderitstextinbold,insteadofusingapropertyinanXMLlayout.SinceXMLlayoutsareyetanotherfileforyoutokeeptrackof,weneedgoodreasonsforusingsuchfiles.Perhapsthebiggestreasonistoassistinthecreationoftoolsforviewdefinition,suchasaGUIbuilderinanIDElikeEclipseoradedicatedAndroidGUIdesignerlikeDroidDraw1.SuchGUIbuilderscould,inprinciple,generateJavacodeinsteadofXML.Thechallengeisre-readingtheUIdefinitiontosupportedits—thatisfarsimplerifthedataisinastructuredformatlikeXMLthaninaprogramminglanguage.Moreover,keepinggeneratedXMLdefinitionsseparatedfromhand-writtenJavacodemakesitlesslikelythatsomebodycustom-craftedsourcewillgetclobberedbyaccidentwhenthegeneratedbitsgetre-generated.XMLformsanicemiddlegroundbetweensomethingthatiseasyfortool-writerstouseandeasyforprogrammerstoworkwithbyhandasneeded.Also,XMLasaGUIdefinitionformatisbecomingmorecommonplace.MXAML2,AdobeFlex3,andMozillaXUL4alltakeasimilarapproachtothatofAndroid:putlayoutdetailsinanXMLfileandputprogrammingsmartsinsourcefiles(e.g.,JavaScriptforXUL).Manyless-well-knownGUIframeworks,suchasZK5,alsouseXMLforviewdefinition.Whilelowingtheherd”isnotnecessarilythebestpolicy,itdoeshavetheadvantageofhelpingtoeasethetransitionintoAndroidfromanyotherXML-centeredviewdescriptionlanguage.layoutfile,foundintheLayouts/NowReduxsampleproject.ThiscodesamplealongwithallothersinthischaptercanbefoundintheSourceCodeareaofhttp://r/.<?xmlversion="1.0"encoding="utf-8"?><Buttonxmlns:android="http://r/pkndroid"android:id="@+id/button"android:text=""android:layout_width="fill_parent"android:layout_height="fill_parent"/>Theclassnameofthewidget—Button—formsthenameoftheXMLelement.SinceButtonisanAndroid-suppliedwidget,wecanjustusethebareclassname.Ifyoucreateyourownwidgetsassubclassesofandroid.view.View,youwouldneedtoprovideafullpackagedeclarationaswell.TherootelementneedstodeclaretheAndroidXMLnamespace:xmlns:android="http:/schem/r/pksndroid"Allotherelementswillbechildrenoftherootandwillinheritthatnamespacedeclaration.BecausewewanttoreferencethisbuttonfromourJavacode,weneedtogiveitanidentifierviatheandroid:idattribute.Wewillcoverthisconceptingreaterdetaillaterinthischapter.TheremainingattributesarepropertiesofthisButtoninstance:android:textindicatestheinitialtexttobedisplayedonthebuttonface(inthiscase,anemptystring)android:layout_widthandandroid:layout_heighttellAndroidtohavethewidthandheightfilltheinthiscasetheentirescreen—theseattributeswillbecoveredingreaterdetailinChapter7.Sincethissinglewidgetistheonlycontentinouractivity,weonlyneedthissingleelement.ComplexUIswillrequireawholetreeofelements,representingthewidgetsandcontainersthatcontroltheirpositioning.AlltheremainingchaptersofthisbookwillusetheXMLlayoutformwheneverpractical,sotherearedozensofotherexamplesofmorecomplexlayoutsforyoutoperusefromChapter7onward.3Whatswiththe@Signs?ManywidgetsandcontainersonlyneedtoappearintheXMLlayoutfileanddonotneedtobeeferencedinyourJavacode.Forexample,astaticlabel(TextView)frequentlyonlyneedstobeinthelayoutfiletoindicatewhereitshouldappear.ThesesortsofelementsintheXMLfiledonotneedtohavetheandroid:idattributetogivethemaname.AnythingyoudowanttouseinyourJavasource,though,needsanandroid:id.Theconventionistouse@+id/...astheidvalue,wherethe...representsyourlocallyuniquenameforthewidgetinquestion.IntheXMLlayoutexampleintheprecedingsection,@+id/buttonistheidentifierfortheButtonwidget.Androidprovidesafewspecialandroid:idvalues,oftheform@android:id/....Wewillseesomeoftheseinvariouschaptersofthisbook,suchasChapters8and10.WeAttachThesetotheJavaHow?GiventhatyouhavepainstakinglysetupthewidgetsandcontainersinanXMLlayoutfilenamedmain.xmlstoredinresyout,allyouneedisonestatementinyouractivityonCreate()callbacktousethatlayout:setContentView(R.layout.main);ThisisthesamesetContentView()weusedearlier,passingitaninstanceofaViewsubclass(inthatcase,aButton).TheAndroid-builtview,constructedfromourlayout,isaccessedfromthatcode-generatedRclass.AllofthelayoutsareaccessibleunderR.layout,keyedbythebasenameofthelayoutfile—main.xmlresultsinR.layout.main.Toaccessouridentifiedwidgets,usefindViewById(),passinginthenumericidentifierofthewidgetinquestion.ThatnumericidentifierwasgeneratedbyAndroidintheRclassasR.id.something(wheresomethingisthespecificwidgetyouareseeking).ThosewidgetsaresimplysubclassesofView,justliketheButtoninstancewecreatedinChapter4.TheRestoftheStoryIntheoriginalNowdemo,thefacewouldshowthecurrenttime,whichwouldreflectwhenthebuttonwaslastpushed(orwhentheactivitywasfirstshown,ifthebuttonhadnotyetbeenpushed).Mostofthatlogicstillworks,eveninthisreviseddemo(NowRedux).However,ratherthaninstantiatingtheButtoninouractivityonCreate()callback,wecanreferencetheonefromtheXMLlayout:package/r/monsware.android.layouts;importandroid.app.Activity;importandroid.os.Bundle;importandroid.view.View;importandroid.widget.Button;importjava.util.Date;publicclassNowReduxextendsActivityimplementsView.OnClickListener {Buttonbtn;@OverridepublicvoidonCreate(Bundleicicle) {super.onCreate(icicle);setContentView(R.layout.main);btn=(Button)findViewById(R.id.button);btn.setOnClickListener(this);updateTime();}publicvoidonClick(Viewview) {updateTime();}privatevoidupdateTime() {btn.setText(newDate().toString());}}ThefirstdifferenceisthatratherthansettingthecontentviewtobeaviewwecreatedinJavacode,wesetittoreferencetheXMLlayout(setContentView(R.layout.main)).TheR.javasourcefilewillbeupdatedwhenwerebuildthisprojecttoincludeareferencetoourlayoutfile(storedasmain.xmlinourresyoutdirectory).TheotherdifferenceisthatweneedtogetourhandsonourButtoninstance,forwhichweusethefindViewById()call.Sinceweidentifiedourbuttonas@+id/button,wecanreferencetheidentifierasR.id.button.Now,withtheButtoninstanceinhand,wecansetthecallbackandsetthelabelasneeded.. EmployingBasicWidgetsEveryGUItoolkithassomebasicwidgets:fields,labels,buttons,etc.Atoolkitisnodifferentinscope,andthebasicwidgetswillprovideagoodintroductionastohowwidgetsworkinAndroidactivities.Thesimplestwidgetisthelabel,referredtoinAndroidasaTextView.LikeinmostGUItoolkits,labelsarebitsoftextnoteditabledirectlybyusers.Typically,theyareusedtoidentifyadjacentwidgets(e.g.,ame:abelbeforeafieldwhereonefillsinaname).InJava,youcancreatealabelbycreatingaTextViewinstance.Morecommonly,though,youwillcreatelabelsinXMLlayoutfilesbyaddingaTextViewelementtothelayout,withanandroid:textpropertytosetthevalueofthelabelitself.Ifyouneedtoswaplabelsbasedoncertaincriteria,suchasinternationalization,youmaywishtousearesourcereferenceintheXMLinstead,aswillbedescribedinChapter9.TextViewhasnumerousotherpropertiesofrelevanceforlabels,Forexample,intheBasicabelproject,youwillfindthefollowinglayoutfile:<?xmlversion="1.0"encoding="utf-8"?><TextViewxmlns:android=http:/schem/r/pkndroidandroid:layout_width="fill_parent"android:layout_height="wrap_content"android:text="Youwereexpectingsomethingprofound?"2.1 Button,WhGottheButton?WeealreadyseentheuseoftheButtonwidgetinChapters4and5.Asitturnsout,ButtonisasubclassofTextView,soeverythingdiscussedintheprecedingsectionintermsofformattingthefaceofthebuttonstillholds.Androidhastwowidgetstohelpyouembedimagesinyouractivities:ImageViewandImageButton.Asthenamessuggest,theyareimage-basedanaloguestoTextViewandButton,respectively.Eachwidgettakesanandroid:srcattribute(inanXMLlayout)tospecifywhatpicturetouse.Theseusuallyreferenceadrawableresource,describedingreaterdetailinthechapteronresources.YoucanalsosettheimagecontentbasedonaUrifromacontentproviderviasetImageURI().ImageButton,asubclassofImageView,mixesinthestandardButtonbehaviors,forrespondingtoclicksandwhatnot.Forexample,takeapeekatthemain.xmllayoutfromtheBasicageViewsampleproject:<?xmlversion="1.0"encoding="utf-8"?><ImageViewxmlns:android=http://r/pksndroidandroid:id="@+id/icon"android:layout_width="fill_parent"android:layout_height="fill_parent"android:adjustViewBounds="true"android:src="@drawableolecule"2.2FieldsofGreen.OrOtherColors.Alongwithbuttonsandlabels,fieldsarethethirdnchor”ofmostGUItoolkits.InAndroid,theyareimplementedviatheEditTextwidget,whichisasubclassoftheTextViewusedforlabels.AlongwiththestandardTextViewproperties(e.g.,android:textStyle),EditTexthasmanyothersthatwillbeusefulforyouinconstructingfields,including:Beyondthose,youcanconfigurefieldstousespecializedinputmethods,suchasandroid:numericfornumeric-onlyinput,android:passwordforshroudedpasswordinput,andandroid:phoneNumberforenteringinphonenumbers.Ifyouwanttocreateyourowninputmethodscheme(e.g.,postalcodes,SocialSecuritynumbers),youneedtocreateyourownimplementationoftheInputMethodinterface,thenconfigurethefieldtouseitviaandroid:inputMethod.Forexample,fromtheBasic/Fieldproject,hereisanXMLlayout
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網頁內容里面會有圖紙預覽,若沒有圖紙預覽就沒有圖紙。
- 4. 未經權益所有人同意不得將文件中的內容挪作商業(yè)或盈利用途。
- 5. 人人文庫網僅提供信息存儲空間,僅對用戶上傳內容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內容本身不做任何修改或編輯,并不能對任何下載內容負責。
- 6. 下載文件中如有侵權或不適當內容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 船舶泵機租賃合同
- 醫(yī)療創(chuàng)新項目管理流程
- 智能機場智能化施工合同
- 住院期間患者離院管理
- 建筑綠化安全合同協(xié)議書
- 醫(yī)保業(yè)務數(shù)據(jù)
- 植物園水電設施施工協(xié)議
- 電力工程皮卡租賃協(xié)議
- 醫(yī)療器械招標評分索引表模板
- 神經外科護理觀察典型案例
- ASME-第Ⅸ卷焊接工藝評定,焊工技能評定
- 初三家長會物理學科
- 調度通信系統(tǒng)搬遷方案
- 藍色簡約老師工程師醫(yī)師高級職稱晉升答辯報告PPT
- 師曠論學 課件
- 化學品鑒別分類報告
- 國風古韻中國風文化模板課件
- 西門子RWD60控制器說明書
- 2022-203學年(中職)《餐飲服務與管理》試題2試卷帶答案
- 新疆維吾爾自治區(qū)阿克蘇地區(qū)各縣區(qū)鄉(xiāng)鎮(zhèn)行政村村莊村名居民村民委員會明細及行政區(qū)劃代碼
- 公路工程冬季安全專項施工方案
評論
0/150
提交評論