編輯:Android開發教程
Wallpaper介紹一個Activity如何通過Style把系統Wallpaper作為當前Activity的背景。
這是WallpaperActivity在 AndroidManifest.xml中的定義:
<activity android:name=”.app.WallpaperActivity”
android:label=” @string/activity_wallpaper”
android:theme=”@style/Theme.Wallpaper”>
<intent-filter>
< action android:name=”android.intent.action.MAIN” />
<category android:name=” android.intent.category.SAMPLE_CODE” />
< /intent-filter>
< /activity>
@style/Theme.Wallpaper定義如下:繼承系統android:style/Theme.Wallpaper,並將前景色設為白色( 這裡是文字的顏色)
<!– A theme that has a wallpaper background. Here we explicitly specify
that this theme is to inherit from the system’s wallpaper theme,
which sets up various attributes correctly. –>
<style name=”Theme.Wallpaper” parent=”android:style/Theme.Wallpaper”>
<item name=”android:colorForeground”>#fff</item>
< /style>
其實實現ListView過濾功能最方便的便是使用ArrayAdapter,裡面自帶的 getFilter()方法能很方便的實現此功能,但是在實際的開發中,一般都是繼承於
這裡歸納寫一個android網絡框架的一般性原理:Http網絡請求原理學過《計算機網絡》的應該都知道http是一種應用層協議,它通過tcp實現了可靠的數據傳輸,能夠保證數
前面在Android RoboGuice 使用指南(1):概述 對應Roboguice做了簡要的介紹 ,之後介紹了Google Guice的基本用法,Roboguice是
一直在仿微信界面,今天終於有幸利用百度雲推送仿一仿微信聊天了~~~首先特別感謝:weidi1989分享的Android之基於百度雲推送IM ,大家可以直接下載;省了很多事