客户功能需求:设置可以自定义的锁屏壁纸。
分析:首先分析系统壁纸设置过程,参考 上一期文章,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