如何使用android直接在主要活动中显示动态壁纸?
我想要一个屏幕,
样品:
当我点击进行编程时,我想直播动态壁纸“设置壁纸”实时屏幕:
样品看图片请 ![在此输入图像说明] [1]
http://i.stack.imgur.com/IFzTy.png
我不想要壁纸列表,我不想要主要活动其他按钮..我只想当我点击节目我要直接动态壁纸“设置壁纸”直播画面。
抱歉,我的英语不好......
我该怎么办? 请帮帮我
我总共有4个java代码:
Animationwallpaper.java Bokehrainbowcircle.java Bokehrainbowwallpaper.java MainActivity.Java
And My manifest code:
<?xml version="1.0" encoding="utf-8"?>
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="com.sample.livewallpaper.bokehrainbow" android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="7" />
<uses-feature android:name="android.software.live_wallpaper" />
<!-- We need to request a permission to install a shortcut icon -->
<uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT" />
<application
android:label="@string/wallpapers"
android:icon="@drawable/icon">
<service
android:name="com.funnyphotoshoppictures.BokehRainbowWallpaper"
android:permission="android.permission.BIND_WALLPAPER">
<intent-filter>
<action android:name="android.service.wallpaper.WallpaperService" />
</intent-filter>
<meta-data android:name="android.service.wallpaper" android:resource="@layout/bokeh" />
</service>
<activity
android:name="com.funnyphotoshoppictures.AnimationWallpaper"
android:theme="@android:style/Theme.WallpaperSettings"
android:exported="true">
</activity>
<!-- Register the activity in the manifest -->
<activity
android:name="com.funnyphotoshoppictures.MainActivity"
android:theme="@android:style/Theme.WallpaperSettings"
android:screenOrientation="portrait"
android:icon="@drawable/icon">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<supports-screens
android:smallScreens="false"
android:normalScreens="true"
android:largeScreens="true" />
</manifest>
答案 0 :(得分:2)
按下按钮后,执行这些代码。 “尝试”中的代码意味着准确地跳到您的目标实况墙纸,而不是所有动态壁纸的图库。它似乎符合您的要求,但它适用于&gt; android 4.1。
“catch”中的代码意味着如果手机不支持“尝试”中的代码,则跳转到所有动态壁纸的图库。
希望它可以帮到你:)。
try{
Intent intent = new Intent(WallpaperManager.ACTION_CHANGE_LIVE_WALLPAPER);
intent.putExtra(WallpaperManager.EXTRA_LIVE_WALLPAPER_COMPONENT,
new ComponentName(MainActivity.this, com.abc.YourMainProgram.class));
startActivity(intent);
}
catch(Exception e){
Intent intent = new Intent();
intent.setAction(WallpaperManager.ACTION_LIVE_WALLPAPER_CHOOSER);
startActivity(intent);
}
答案 1 :(得分:1)
在styles.xml中使用它:
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat">
<item name="android:windowBackground">@android:color/transparent</item>
<item name="android:colorBackgroundCacheHint">@null</item>
<item name="android:windowShowWallpaper">true</item>
<item name="android:windowTranslucentNavigation">true</item>
<item name="android:windowTranslucentStatus">true</item>
</style>