android 设置锁屏壁纸

本文详细介绍了如何在Android应用中实现自定义锁屏壁纸的功能。通过分析系统的壁纸设置流程,结合上一期关于Android 5.1设置壁纸的文章,提出利用广播来实现这一功能。具体实现涉及BitmapCropTask类的修改和操作。
摘要由CSDN通过智能技术生成

客户功能需求:设置可以自定义的锁屏壁纸。

分析:首先分析系统壁纸设置过程,参考 上一期文章,Android5.1 设置壁纸流程简析。可以按照设置壁纸的方式,模仿实现设置锁屏壁纸的功能。

利用广播,实现设置锁屏壁纸功能。

具体实现:

①.packages/apps/Trebuchet/WallpaperPicker/res/layout/actionbar_set_wallpaper.xml


<!-- 增加Linerlayout布局 包裹两个控件-->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
    android:orientation="horizontal" >

<com.android.launcher3.AlphaDisableableButton
    xmlns:android="http://schemas.android.com/apk/res/android"
    style="@style/ActionBarSetWallpaperStyle"
    android:id="@+id/set_wallpaper_button"
    android:layout_width="0dip"
    android:layout_weight="1"
    android:layout_height="match_parent"
    android:paddingRight="20dp"
    android:drawableLeft="@drawable/ic_actionbar_accept"
    android:drawablePadding="8dp"
    android:gravity="start|center_vertical"
    android:text="@string/wallpaper_instructions">
</com.android.launcher3.AlphaDisableableButton>

<!-- 模仿上面写一个设置锁屏的button 加入weight =1 ,使两按钮平分-->
<com.android.launcher3.AlphaDisableableButton
    xmlns:android="http://schemas.android.com/apk/res/android"
    style="@style
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值