Android控件之AnalogClock與DigitalClock用法實(shí)例分析
本文實(shí)例講述了Android控件之AnalogClock與DigitalClock用法。分享給大家供大家參考。具體如下:
時(shí)鐘控件包括AnalogClock和DigitalClock,它們都負(fù)責(zé)顯示時(shí)鐘,所不同的是AnalogClock控件顯示模擬時(shí)鐘,且只顯示時(shí)針和分針,而DigitalClock顯示數(shù)字時(shí)鐘,可精確到秒
以下模擬時(shí)鐘的用法
目錄結(jié)構(gòu):
布局文件
<?xml version="1.0" encoding="utf-8"?> <!-- AnalogClock與DigitalClock這兩個(gè)時(shí)鐘控件都不需要Java代碼, 只要在layout的xml里插入以下代碼即可自動(dòng)顯示時(shí)間--> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent"> <!-- 模擬時(shí)鐘控件 --> <AnalogClock android:id="@+id/analogClock" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center_horizontal"/> <!-- 數(shù)字時(shí)鐘控件 --> <DigitalClock android:id="@+id/digitalClock" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center_horizontal"/> </LinearLayout>
運(yùn)行結(jié)果:
希望本文所述對(duì)大家的Android程序設(shè)計(jì)有所幫助。
- Android入門(mén)之TextClock的使用教程
- Android服務(wù)應(yīng)用ClockService實(shí)現(xiàn)鬧鐘功能
- Android自定義DigitalClock控件實(shí)現(xiàn)商品倒計(jì)時(shí)
- Android ScreenLockReceiver監(jiān)聽(tīng)鎖屏功能示例
- Android應(yīng)用程序保持后臺(tái)喚醒(使用WakeLock實(shí)現(xiàn))
- Android DigitalClock組件用法實(shí)例
- Android AnalogClock簡(jiǎn)單使用方法實(shí)例
- Android中系統(tǒng)自帶鎖WalkLock與KeyguardLock用法實(shí)例詳解
- Android Lock鎖實(shí)現(xiàn)原理詳細(xì)分析
相關(guān)文章
Android 中ViewPager重排序與更新實(shí)例詳解
這篇文章主要介紹了Android 中ViewPager重排序與更新實(shí)例詳解的相關(guān)資料,需要的朋友可以參考下2017-07-07Android實(shí)現(xiàn)傾斜角標(biāo)樣式
最新小編接到這樣一個(gè)項(xiàng)目,需要在一個(gè)距形卡片上做一個(gè)傾斜的Tag,類(lèi)似支付寶上的一個(gè)功能,接著小編給大家?guī)?lái)了實(shí)現(xiàn)思路,對(duì)android 傾斜角標(biāo)的實(shí)現(xiàn)方法感興趣的朋友跟隨小編一起看看吧2019-10-10android實(shí)現(xiàn)漢字轉(zhuǎn)拼音功能 帶多音字識(shí)別
這篇文章主要介紹了android實(shí)現(xiàn)漢字轉(zhuǎn)拼音功能,帶多音字識(shí)別,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2017-02-02利用Android模仿微信攝像圓環(huán)進(jìn)度效果實(shí)例
圓環(huán)進(jìn)度條,大家應(yīng)該都見(jiàn)過(guò),而這篇文章主要給大家介紹了關(guān)于利用Android模仿微信攝像圓環(huán)進(jìn)度效果的相關(guān)資料,實(shí)現(xiàn)后的效果非常不錯(cuò),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧。2017-11-11kotlin中EditText賦值Type mismatch方式
這篇文章主要介紹了kotlin中EditText賦值Type mismatch方式,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過(guò)來(lái)看看吧2020-03-03詳細(xì)解讀Android系統(tǒng)中的application標(biāo)簽
這篇文章主要介紹了Android系統(tǒng)中的application標(biāo)簽,以application來(lái)聲明App是Android入門(mén)學(xué)習(xí)中的基礎(chǔ)知識(shí),需要的朋友可以參考下2016-04-04Android為按鈕控件綁定事件的五種實(shí)現(xiàn)方式
本篇文章主要是介紹了Android為按鈕控件綁定事件的五種實(shí)現(xiàn)方式,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下。2016-11-11flutter InheritedWidget使用方法總結(jié)
這篇文章主要為大家介紹了flutter InheritedWidget使用方法總結(jié)示例詳解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪2022-11-11一文帶你了解Android?Flutter中Transform的使用
flutter的強(qiáng)大之處在于,可以對(duì)所有的widget進(jìn)行Transform,因此可以做出非??犰诺男Ч?。本文就來(lái)大家了解一下Transform的具體使用,感興趣的可以了解一下2023-01-01