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

这样看没办法看出效果,如果能做出动态图就好了,下次吧。

除了ToggleButton的自定义之外,用户配置的信息也是要保存起来的,每一次启动程序的时候要能保证使用的是之前的配置,而不是默认配置,在这里使用SharedPreferences是最好的选择了。

想要源码的猛戳这里:http://download.csdn.net/detail/wwj_748/5945829

布局文件:

/2013.08.14_ToggleButton_demo/res/layout/settings.xml

<LinearLayout xmlns:android=“http://schemas.android.com/apk/res/android”

android:id=“@+id/LinearLayout1”

android:layout_width=“match_parent”

android:layout_height=“match_parent”

android:background=“@drawable/bg”

android:orientation=“vertical” >

<RelativeLayout

android:layout_width=“match_parent”

android:layout_height=“wrap_content”

android:background=“@drawable/banner_bg” >

<TextView

android:id=“@+id/tv_Title”

android:layout_width=“wrap_content”

android:layout_height=“42dp”

android:layout_centerHorizontal=“true”

android:gravity=“center”

android:text=“设置”

android:textColor=“#ffffff”

android:textSize=“22sp” />

<ScrollView

android:layout_width=“match_parent”

android:layout_height=“match_parent” >

<LinearLayout

android:layout_width=“match_parent”

android:layout_height=“wrap_content”

android:orientation=“vertical” >

<LinearLayout

android:id=“@+id/layout_AutoPlay”

android:layout_width=“match_parent”

android:layout_height=“wrap_content”

android:background=“@drawable/item_short_bg_selector”

android:gravity=“center_vertical” >

<TextView

android:id=“@+id/tv_AutoPlay”

android:layout_width=“0dp”

android:layout_height=“wrap_content”

android:layout_marginLeft=“10dp”

android:layout_weight=“1”

android:focusable=“false”

android:singleLine=“true”

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_AutoPlay”

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_AutoPlay”

android:layout_width=“wrap_content”

android:layout_height=“wrap_content”

android:layout_alignRight=“@+id/toggle_AutoPlay”

android:background=“#00000000”

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

<ImageView

android:layout_width=“match_parent”

android:layout_height=“wrap_content”

android:scaleType=“fitXY”

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

<LinearLayout

android:id=“@+id/layout_StartOnBoot”

android:layout_width=“match_parent”

android:layout_height=“wrap_content”

android:background=“@drawable/item_short_bg_selector”

android:gravity=“center_vertical” >

<TextView

android:id=“@+id/tv_StartOnBoot”

android:layout_width=“0dp”

android:layout_height=“wrap_content”

android:layout_marginLeft=“10dp”

android:layout_weight=“1”

android:focusable=“false”

android:singleLine=“true”

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;

最后

上面这些公司都是时下最受欢迎的互联网大厂,他们的职级、薪资、福利也都讲的差不多了,相信大家都是有梦想和野心的人,心里多少应该都有些想法。

也相信很多人也都在为即将到来的金九银十做准备,也有不少人的目标都是这些公司。

我这边有不少朋友都在这些厂工作,其中也有很多人担任过面试官,上面的资料也差不多都是从朋友那边打探来的。除了上面的信息,我这边还有这些大厂近年来的面试真题及解析,以及一些朋友出于兴趣和热爱一起整理的Android时下热门知识点的学习资料

部分文件:



《Android学习笔记总结+移动架构视频+大厂面试真题+项目实战源码》点击传送门,即可获取!
oolean defaultValue) {

final SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);

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

return value;

最后

上面这些公司都是时下最受欢迎的互联网大厂,他们的职级、薪资、福利也都讲的差不多了,相信大家都是有梦想和野心的人,心里多少应该都有些想法。

也相信很多人也都在为即将到来的金九银十做准备,也有不少人的目标都是这些公司。

我这边有不少朋友都在这些厂工作,其中也有很多人担任过面试官,上面的资料也差不多都是从朋友那边打探来的。除了上面的信息,我这边还有这些大厂近年来的面试真题及解析,以及一些朋友出于兴趣和热爱一起整理的Android时下热门知识点的学习资料

部分文件:
[外链图片转存中…(img-DWZQSnV4-1714761830289)]
[外链图片转存中…(img-ochVLdAu-1714761830291)]
[外链图片转存中…(img-Cln1NLvS-1714761830292)]
《Android学习笔记总结+移动架构视频+大厂面试真题+项目实战源码》点击传送门,即可获取!

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值