下載本文檔
版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進行舉報或認領(lǐng)
文檔簡介
1、鎖屏布局控件擺放本樓中內(nèi)容不會很復(fù)雜,著重利用例子分析代碼,就用鎖屏布局這個例子來講解一下一樓中的一些 XML 知識。講解的例子為 MiniCM7-2.2.0中的 framework-res.apk,其它 ROM 中可能會有點不同,但你了解代碼意思后就可以改別的了。先來看一下修改前后的效果:要做的就是把左圖中的時鐘、網(wǎng)標、日期、鬧鐘時間等空間放到屏幕中間去,再把 3個 音 樂 控 制 按 鈕 放 到 屏 幕 上 方 。 先 來 說 說 這 個 布 局 文 件 在 哪 里 , 反 編 譯 framework-res.apk 后找到:framework-resreslayoutkeyguard_s
2、creen_tab_unlock.xml打開這個文件,并排列好:超級長的代碼,大家蛋定,咱慢慢分析,我在文件中用注釋的方式為大家解釋代碼,其實很多地方只需要添加以下居中屬性,改一下大小,邊距這些。內(nèi)容太多很難為大家一一解釋,但是我會把我改好的放上來,大家可以參考下,參照我這些解釋大家可以試著修改一下來感受鎖屏布局是怎樣控制的。注意:是 XML 的注釋方法。android.gesture.GestureOverlayViewandroid:orienion=noneandroid:id=id/gestures android:layout_width=fill_parent android:la
3、yout_height=fill_parentandroid:gestureStrokeType=multipleandroid:eventserceptionEnabled=falsexmlns:android= HYPERLINK http:/s/ http:/sandroid:gravity=center_horizontal android:id=id/rootandroid:background=#70000000 android:layout_width=fill_parentandroid:layout_height=fill_parentxmlns:tabunlock= HYP
4、ERLINK http:/s/ http:/sTextView android:textAppearance=?textAppearanceMedium.android.tabunlockandroid:textSize=22.0sp android:ellipsize=marqueeandroid:gravity=bottom|right|center android:id=id/carrierandroid:layout_width=wrap_content想要的,要把這里改為居中: android:layout_height=wrap_content android:layout_mar
5、ginLeft=8.0dipandroid:layout_margop=5.0dip android:layout_marginRight=8.0dip android:singleLine=true android:layout_alignParentTop=true android:layout_alignParentRight=true /TextView 讓它居android:textAppearance=?textAppearanandroid:textColor=color/whitemallandroid:id=id/emergencyCallText android:layou
6、t_width=wrap_content android:layout_height=wrap_contentandroid:layout_marginLeft=8.0dipandroid:layout_margop=0.0dipandroid:layout_marginRight=8.0dipandroid:text=string/emergency_calls_only android:layout_below=id/carrier 還要再設(shè)置一下居中android:layout_alignParentRight=true /com.android.ernal.widget.Digital
7、Clock android:id=id/time android:paddingBottom=8.0dip android:layout_width=wrap_content android:layout_height=wrap_contentandroid:layout_marginLeft=20.0dip把這句改為只需要在這個控件的主android:layout_margop=10.0dipandroid:layout_marginRight=20.0dip android:layout_below=id/carrierandroid:layout_centerInParent=trueT
8、extView android:textAppearance=?textAppearanceMedium android:textSize=72.0spandroid:ellipsize=none android:id=id/timeDisplay android:layout_width=wrap_content android:layout_height=wrap_content android:layout_marginBottom=10.0dip android:singleLine=true android:shadowColor=#c0000000 android:shadowDx
9、=0.0 android:shadowDy=0.0 android:shadowRadius=3.0 /TextView android:textAppearance=?textAppearanceMedium android:textSize=22.0spandroid:ellipsize=noneandroid:id=id/am_pm android:layout_width=wrap_content android:layout_height=wrap_content android:layout_marginLeft=8.0dip android:singleLine=true and
10、roid:shadowColor=#c0000000 android:shadowDx=0.0 android:shadowDy=0.0 android:shadowRadius=3.0 android:layout_toRightOf=id/timeDisplayandroid:layout_alignBaseline=id/timeDisplay /TextView android:textAppearance=?textAppearanceMedium android:id=id/date android:layout_width=wrap_content android:layout_
11、height=wrap_content android:layout_marginLeft=24.0dip android:layout_marginRight=24.0dip android:layout_below=id/timeandroid:layout_centerInParent=true /LinearLayout android:orienion=verticalandroid:id=id/sus_boxandroid:layout_width=fill_parent android:layout_height=wrap_content android:layout_below
12、=id/dateTextViewandroid:textAppearance=?textAppearanceMedium android:ellipsize=endandroid:id=id/sus_chargingandroid:layout_width=wrap_content android:layout_height=wrap_contentandroid:layout_marginLeft=24.0dipandroid:layout_margop=4.0dipandroid:layout_marginRight=24.0dip android:maxLines=2android:dr
13、awablePadding=4.0dipandroid:layout_below=id/dateandroid:layout_centerInParent=true /TextView android:textAppearance=?textAppearanceMedium android:ellipsize=endandroid:id=id/sus_alarmandroid:layout_width=wrap_content android:layout_height=wrap_contentandroid:layout_marginLeft=24.0dipandroid:layout_ma
14、rgop=4.0dipandroid:layout_marginRight=24.0dip android:maxLines=2android:drawableLeft=drawable/ic_lock_idle_alarm android:drawablePadding=4.0dip android:layout_centerInParent=true /TextView android:textAppearance=?textAppearanceMedium android:ellipsize=end一張android:id=id/sus_calendarandroid:layout_wi
15、dth=wrap_content android:layout_height=wrap_contentandroid:layout_marginLeft=24.0dipandroid:layout_margop=4.0dipandroid:layout_marginRight=24.0dip android:maxLines=3 android:drawableLeft=drawable/ic_lock_idle_calendar,也就是那張日歷的小圖標 - android:drawablePadding=4.0dipTextView按鈕放到屏android:textAppearance=?t
16、extAppearan android:id=id/customMsg android:layout_width=wrap_content android:layout_height=wrap_contentandroid:layout_marginLeft=24.0dipmallandroid:layout_margop=4.0dipandroid:layout_marginRight=24.0dipandroid:layout_below=id/sandroid:textAppearance=?textAppearanceMedium android:id=id/screenLocked
17、android:layout_width=wrap_content android:layout_height=wrap_contentandroid:layout_marginLeft=24.0dipandroid:layout_margop=12.0dipandroid:drawablePadding=4.0dip android:layout_below=id/customMsg /ImageButtonandroid:id=id/musicControlPlay android:background=color/transparent android:padding=10.0px 如果
18、想做到像android:visibility=gone android:layout_width=wrap_contentandroid:layout_height=wrap_content android:layout_marginBottom=10.0dip android:src=drawable/ic_media_play drawable 里面的 android:layout_alignParentBottom=true android:layout_centerInParent=true /ImageButton android:id=id/musicControlPause an
19、droid:background=color/transparentandroid:padding=10.0pxandroid:layout_alignParentBottom=true android:layout_centerInParent=true /ImageButton 幕下方,android:id=id/musicControlPrevious android:background=color/transparent android:padding=10.0px android:visibility=goneandroid:layout_width=wrap_contentand
20、roid:layout_height=wrap_content android:layout_marginRight=20.0dip 件像圖中那樣緊挨著,android:layout_marginBottom=10.0dip android:src=drawable/ic_media_previous android:layout_toLeftOf=id/musicControlPause android:layout_alignParentBottom=true /ImageButton android:id=id/musicControlNext android:background=co
21、lor/transparentandroid:padding=10.0px android:layout_marginLeft=20.0dip 像圖中那樣緊挨著,android:layout_marginBottom=10.0dip android:src=drawable/ic_media_next android:layout_toRightOf=id/musicControlPause android:layout_alignParentBottom=true /TextViewandroid:textAppearance=?textAppearan android:ellipsize=marqueeandroid:gravity=centermallandroid:id=owPla
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責。
- 6. 下載文件中如有侵權(quán)或不適當內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 2024年臨時搬運合同
- 2024年度某新能源汽車制造技術(shù)許可合同
- 2024年度文化娛樂活動策劃合同
- 2024年廣播劇配音委托合同
- 2024年建筑工程地面建設(shè)合同
- 企業(yè)普通員工年終個人工作總結(jié)
- 2024年度風力發(fā)電設(shè)備安裝合同
- 節(jié)能宣傳課件教學(xué)課件
- 2024醫(yī)療機構(gòu)人力資源共享與培訓(xùn)合同
- 2024年度碎石料供需合同
- 護士與醫(yī)生的合作與溝通
- GB 42295-2022電動自行車電氣安全要求
- 產(chǎn)品系統(tǒng)設(shè)計開發(fā) 課件 第4、5章 產(chǎn)品系統(tǒng)設(shè)計類型、產(chǎn)品系統(tǒng)設(shè)計開發(fā)綜合案例
- 1編譯原理及實現(xiàn)課后題及答案
- 焊接材料的質(zhì)量控制和追溯規(guī)范
- 讓閱讀成為習(xí)慣家長會課件
- 家庭健康照護服務(wù)方案
- 施工方案 誰編
- 滬教牛津版八上英語Unit-6-單元完整課件
- 新能源及多能互補互補技術(shù)
- 混凝土攪拌站安裝及拆除方案
評論
0/150
提交評論