畢業(yè)設計外文文獻-Android起航_第1頁
畢業(yè)設計外文文獻-Android起航_第2頁
畢業(yè)設計外文文獻-Android起航_第3頁
畢業(yè)設計外文文獻-Android起航_第4頁
畢業(yè)設計外文文獻-Android起航_第5頁
已閱讀5頁,還剩6頁未讀 繼續(xù)免費閱讀

下載本文檔

版權說明:本文檔由用戶提供并上傳,收益歸屬內容提供方,若內容存在侵權,請進行舉報或認領

文檔簡介

附錄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. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。

評論

0/150

提交評論