zoukankan      html  css  js  c++  java
  • 【起航计划 016】2015 起航计划 Android APIDemo的魔鬼步伐 15 App->Activity->Wallpaper 系统壁纸作为当前Activity的背景

    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>

  • 相关阅读:
    java中日期格式的转换和应用
    struts2下载
    struts2上传
    div下拉框(待改善)
    jsp中jquery用法一步刷新 验证用户名是否存在
    react 解析json
    babel-polyfill 解决浏览器兼容
    页面跳转缓存 keepAlive
    webpack知识点
    element-ui upload
  • 原文地址:https://www.cnblogs.com/dongdong230/p/4316440.html
Copyright © 2011-2022 走看看