Android记录4--自定义ToggleButton+用SharedPreferences保存用户配置

android:text=“开机自启动”

android:textColor=“#7a6f66”

android:textSize=“18sp” />

<RelativeLayout

android:layout_width=“wrap_content”

android:layout_height=“wrap_content”

android:layout_marginRight=“10dp” >

<ToggleButton

android:id=“@+id/toggle_StartOnBoot”

android:layout_width=“wrap_content”

android:layout_height=“wrap_content”

android:background=“@drawable/toggle_selector”

android:gravity=“left|center_vertical”

android:paddingLeft=“14dp”

android:paddingRight=“14dp”

android:textColor=“#ffffff”

android:textOff=“OFF”

android:textOn=“ON” />

<ImageButton

android:id=“@+id/toggleButton_StartOnBoot”

android:layout_width=“wrap_content”

android:layout_height=“wrap_content”

android:layout_alignRight=“@+id/toggle_StartOnBoot”

android:background=“#00000000”

android:src=“@drawable/progress_thumb_selector” />

哪些selector文件的代码就不贴了,自己看源码吧

Activity文件

**/2013.08.14_ToggleButton_demo/src/com/wwj/toggle/Setting.java

**

package com.wwj.toggle;

import android.app.Activity;

import android.os.Bundle;

import android.view.Gravity;

import android.view.View;

import android.view.View.OnClickListener;

import android.widget.ImageButton;

import android.widget.LinearLayout;

import android.widget.RelativeLayout;

import android.widget.ToggleButton;

/**

  • 自定义ToggleButton的例子

  • @author wwj 2013年8月14

*/

public class Setting extends Activity {

private LinearLayout layout_AutoPlay;

private LinearLayout layout_StartOnBoot;

private ToggleButton toggle_AutoPlay;

private ToggleButton toggle_StartOnBoot;

private ImageButton toggleButton_AutoPlay;

private ImageButton toggleButton_StartOnBoot;

@Override

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.settings);

// 找到控件

layout_AutoPlay = (LinearLayout) findViewById(R.id.layout_AutoPlay);

layout_StartOnBoot = (LinearLayout) findViewById(R.id.layout_StartOnBoot);

toggle_AutoPlay = (ToggleButton) findViewById(R.id.toggle_AutoPlay);

toggle_StartOnBoot = (ToggleButton) findViewById(R.id.toggle_StartOnBoot);

toggleButton_AutoPlay = (ImageButton) findViewById(R.id.toggleButton_AutoPlay);

toggleButton_StartOnBoot = (ImageButton) findViewById(R.id.toggleButton_StartOnBoot);

initViews();

setListeners();

}

private void initViews() {

// 是否自动播放,获取SharePerference保存的用户配置

boolean isAutoPlay = SettingUtils.get(this, SettingUtils.AUTO_PLAY,

false);

toggle_AutoPlay.setChecked(isAutoPlay);

RelativeLayout.LayoutParams params = (RelativeLayout.LayoutParams) toggleButton_AutoPlay

.getLayoutParams();

if (isAutoPlay) { // 如果是自动播放

// 调整位置

params.addRule(RelativeLayout.ALIGN_RIGHT, -1);

params.addRule(RelativeLayout.ALIGN_LEFT,

R.id.toggleButton_AutoPlay);

toggleButton_AutoPlay.setLayoutParams(params);

toggleButton_AutoPlay

.setImageResource(R.drawable.progress_thumb_selector);

toggle_AutoPlay.setGravity(Gravity.RIGHT | Gravity.CENTER_VERTICAL);

} else {

// 调整位置

params.addRule(RelativeLayout.ALIGN_RIGHT, R.id.toggle_AutoPlay);

params.addRule(RelativeLayout.ALIGN_LEFT, -1);

toggleButton_AutoPlay.setLayoutParams(params);

toggleButton_AutoPlay

.setImageResource(R.drawable.progress_thumb_off_selector);

toggle_AutoPlay.setGravity(Gravity.LEFT | Gravity.CENTER_VERTICAL);

}

boolean isAutostart = SettingUtils.get(this,

SettingUtils.IS_AUTO_START, true);

toggle_StartOnBoot.setChecked(isAutostart);

RelativeLayout.LayoutParams params3 = (RelativeLayout.LayoutParams) toggleButton_StartOnBoot

.getLayoutParams();

if (isAutostart) {

// 调整位置

params3.addRule(RelativeLayout.ALIGN_RIGHT, -1);

params3.addRule(RelativeLayout.ALIGN_LEFT, R.id.toggle_StartOnBoot);

toggleButton_StartOnBoot.setLayoutParams(params3);

toggleButton_StartOnBoot

.setImageResource(R.drawable.progress_thumb_selector);

toggle_StartOnBoot.setGravity(Gravity.RIGHT

| Gravity.CENTER_VERTICAL);

} else {

// 调整位置

params3.addRule(RelativeLayout.ALIGN_RIGHT, R.id.toggle_StartOnBoot);

params3.addRule(RelativeLayout.ALIGN_LEFT, -1);

toggleButton_StartOnBoot.setLayoutParams(params3);

toggleButton_StartOnBoot

.setImageResource(R.drawable.progress_thumb_off_selector);

toggle_StartOnBoot.setGravity(Gravity.LEFT

| Gravity.CENTER_VERTICAL);

}

}

private void setListeners() {

toggle_AutoPlay.setOnCheckedChangeListener(new ToggleListener(this,

“自动播放”, toggle_AutoPlay, toggleButton_AutoPlay));

toggle_StartOnBoot.setOnCheckedChangeListener(new ToggleListener(this,

“开机自启动”, toggle_StartOnBoot, toggleButton_StartOnBoot));

// UI事件,按钮点击事件

OnClickListener clickToToggleListener = new OnClickListener() {

@Override

public void onClick(View v) {

toggle_AutoPlay.toggle();

}

};

toggleButton_AutoPlay.setOnClickListener(clickToToggleListener);

layout_AutoPlay.setOnClickListener(clickToToggleListener);

// UI事件,按钮点击事件

OnClickListener clickToToggleAutostartListener = new OnClickListener() {

public void onClick(View v) {

toggle_StartOnBoot.toggle();

}

};

toggleButton_StartOnBoot

.setOnClickListener(clickToToggleAutostartListener);

layout_StartOnBoot

.setOnClickListener(clickToToggleAutostartListener);

}

}

工具类:

/2013.08.14_ToggleButton_demo/src/com/wwj/toggle/SettingUtils.java

package com.wwj.toggle;

import android.content.Context;

import android.content.SharedPreferences;

import android.content.SharedPreferences.Editor;

import android.preference.PreferenceManager;

public class SettingUtils {

public static final String AUTO_PLAY = “auto_play”; // 自动播放

public static final String IS_AUTO_START = “is_auto_start”; // 开机自启动

/**

  • 获取配置

  • @param context

  • @param name

  • @param defaultValue

  • @return

*/

public static boolean get(Context context, String name, boolean defaultValue) {

final SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);

boolean value = prefs.getBoolean(name, defaultValue);

return value;

}

/**

  • 保存用户配置

  • @param context

  • @param name

  • @param value

  • @return

*/

public static boolean set(Context context, String name, boolean value) {

final SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);

Editor editor = prefs.edit();

editor.putBoolean(name, value);

return editor.commit(); //提交

}

}

/2013.08.14_ToggleButton_demo/src/com/wwj/toggle/DisplayUtils.java

package com.wwj.toggle;

import android.content.Context;

public class DisplayUtils {

public static int dip2px(Context context, float dpValue) {

final float scale = context.getResources().getDisplayMetrics().density;

return (int) (dpValue * scale + 0.5f);

}

public static int px2dip(Context context, float pxValue) {

final float scale = context.getResources().getDisplayMetrics().density;

return (int) (pxValue / scale + 0.5f);

}

public static int getScreenWidth(Context context) {

return context.getResources().getDisplayMetrics().widthPixels;

}

public static int getScreenHeight(Context context) {

return context.getResources().getDisplayMetrics().heightPixels;

}

}

/2013.08.14_ToggleButton_demo/src/com/wwj/toggle/ToggleListener.java

package com.wwj.toggle;

import android.content.Context;

import android.view.Gravity;

import android.view.animation.TranslateAnimation;

import android.widget.CompoundButton;

import android.widget.CompoundButton.OnCheckedChangeListener;

import android.widget.ImageButton;

import android.widget.RelativeLayout;

import android.widget.ToggleButton;

/**

  • 状态按钮的监听事件

  • @author wwj

*/

public class ToggleListener implements OnCheckedChangeListener {

private Context context;

private String settingName;

private ToggleButton toggle;

private ImageButton toggle_Button;

public ToggleListener(Context context, String settingName,

ToggleButton toggle, ImageButton toggle_Button) {

this.context = context;

this.settingName = settingName;

this.toggle = toggle;

this.toggle_Button = toggle_Button;

}

@Override

public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {

// 保存设置

if (“自动播放”.equals(settingName)) {

SettingUtils.set(context, SettingUtils.AUTO_PLAY, isChecked);

} else if (“开机自启动”.equals(settingName)) {

SettingUtils.set(context, SettingUtils.IS_AUTO_START, isChecked);

}

// 播放动画

RelativeLayout.LayoutParams params = (RelativeLayout.LayoutParams) toggle_Button

.getLayoutParams();

if (isChecked) {

// 调整位置

params.addRule(RelativeLayout.ALIGN_RIGHT, -1);

if (“自动播放”.equals(settingName)) {

params.addRule(RelativeLayout.ALIGN_LEFT, R.id.toggle_AutoPlay);

} else if (“开机自启动”.equals(settingName)) {

params.addRule(RelativeLayout.ALIGN_LEFT,

R.id.toggle_StartOnBoot);

}

toggle_Button.setLayoutParams(params);

toggle_Button.setImageResource(R.drawable.progress_thumb_selector);

toggle.setGravity(Gravity.RIGHT | Gravity.CENTER_VERTICAL);

// 播放动画

TranslateAnimation animation = new TranslateAnimation(

DisplayUtils.dip2px(context, 40), 0, 0, 0);

animation.setDuration(200);

toggle_Button.startAnimation(animation);

} else {

// 调整位置

if (“自动播放”.equals(settingName)) {

params.addRule(RelativeLayout.ALIGN_RIGHT, R.id.toggle_AutoPlay);

} else if (“开机自启动”.equals(settingName)) {

params.addRule(RelativeLayout.ALIGN_RIGHT,

R.id.toggle_StartOnBoot);

最后

自我介绍一下,小编13年上海交大毕业,曾经在小公司待过,也去过华为、OPPO等大厂,18年进入阿里一直到现在。

深知大多数初中级Android工程师,想要提升技能,往往是自己摸索成长,自己不成体系的自学效果低效漫长且无助

因此我收集整理了一份《2024年Android移动开发全套学习资料》,初衷也很简单,就是希望能够帮助到想自学提升又不知道该从何学起的朋友,同时减轻大家的负担。

既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,基本涵盖了95%以上Android开发知识点!不论你是刚入门Android开发的新手,还是希望在技术上不断提升的资深开发者,这些资料都将为你打开新的学习之门

如果你觉得这些内容对你有帮助,需要这份全套学习资料的朋友可以戳我获取!!

由于文件比较大,这里只是将部分目录截图出来,每个节点里面都包含大厂面经、学习笔记、源码讲义、实战项目、讲解视频,并且会持续更新!
t);

最后

自我介绍一下,小编13年上海交大毕业,曾经在小公司待过,也去过华为、OPPO等大厂,18年进入阿里一直到现在。

深知大多数初中级Android工程师,想要提升技能,往往是自己摸索成长,自己不成体系的自学效果低效漫长且无助

因此我收集整理了一份《2024年Android移动开发全套学习资料》,初衷也很简单,就是希望能够帮助到想自学提升又不知道该从何学起的朋友,同时减轻大家的负担。

[外链图片转存中…(img-mEOFYRS3-1715489332860)]

[外链图片转存中…(img-a2v9TDNH-1715489332863)]

[外链图片转存中…(img-cevytEU8-1715489332864)]

[外链图片转存中…(img-SH4bDNPh-1715489332865)]

既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,基本涵盖了95%以上Android开发知识点!不论你是刚入门Android开发的新手,还是希望在技术上不断提升的资深开发者,这些资料都将为你打开新的学习之门

如果你觉得这些内容对你有帮助,需要这份全套学习资料的朋友可以戳我获取!!

由于文件比较大,这里只是将部分目录截图出来,每个节点里面都包含大厂面经、学习笔记、源码讲义、实战项目、讲解视频,并且会持续更新!

  • 10
    点赞
  • 21
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值