Android 自定义ToggleButton+用SharedPreferences保存用户配置

布局文件:

<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" />
    </RelativeLayout>

    <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" />
                </RelativeLayout>
            </LinearLayout>

            <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" />
                </RelativeLayout>
            </LinearLayout>
        </LinearLayout>
    </ScrollView>

</LinearLayout>

selector文件的代码就不贴了,自己看源码:http://download.csdn.net/detail/wwj_748/5945829

Activity文件:

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);
    }

}

工具类:

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();    //提交
    }
}

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;
    }
}

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);
            }
            params.addRule(RelativeLayout.ALIGN_LEFT, -1);
            toggle_Button.setLayoutParams(params);
            toggle_Button
                    .setImageResource(R.drawable.progress_thumb_off_selector);

            toggle.setGravity(Gravity.LEFT | Gravity.CENTER_VERTICAL);
            // 播放动画
            TranslateAnimation animation = new TranslateAnimation(
                    DisplayUtils.dip2px(context, -40), 0, 0, 0);
            animation.setDuration(200);
            toggle_Button.startAnimation(animation);
        }
    }

}
时间: 2024-10-12 17:39:18

Android 自定义ToggleButton+用SharedPreferences保存用户配置的相关文章

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

很多应用都会有用户设置,用户的一些偏好可以由用户来决定那是应用人性化的体现,在实际开发中很多情况都作成可配置的了,本篇博客要介绍的是一个比较炫的状态按钮切换,我想很多开发者都想做出这样的效果,在这里我也就把自己参与的项目当中的这部分实现,做出Demo来于朋友们分享. 没有图,我感觉就特别不舒服: 这样看没办法看出效果,如果能做出动态图就好了,下次吧. 除了ToggleButton的自定义之外,用户配置的信息也是要保存起来的,每一次启动程序的时候要能保证使用的是之前的配置,而不是默认配置,在这里使

Android之使用SharedPreferences保存用户偏好参数

在Android应用中,我们常需要记录用户设置的一些偏好参数,,此时我们就需要用SharedPreferences和Editor将这些信息保存下来,在下次登录时读取. SharedPreferences保存的数据主要类似于配置信息格式的数据,因此它保存数据的形式为key-value对,下面我们来看下实例代码. 首先是界面布局,比较简单,就是一个普通的登陆界面. 1 <RelativeLayout xmlns:android="http://schemas.android.com/apk/r

数据类操作之SharedPreferences(保存用户偏好参数)

(一)概述 本节给大家介绍的是第二种存储用户数据的方式,使用SharedPreferences(保存用户偏好参数)保存数据, 当我们的应用想要保存用户的一些偏好参数,比如是否自动登陆,是否记住账号密码,是否在Wifi下才能 联网等相关信息,如果使用数据库的话,显得有点大材小用了!我们把上面这些配置信息称为用户的偏好 设置,就是用户偏好的设置,而这些配置信息通常是保存在特定的文件中!比如windows使用ini文件, 而J2SE中使用properties属性文件与xml文件来保存软件的配置信息;而

SharedPreferences保存用户偏好参数

package com.example.administrator.myapplication; import android.content.Context; import android.content.SharedPreferences; /** * Created by Administrator on 2016/5/7 0007. */ public class BrowserSP { private Context context; private SharedPreferences

Servlet之保存用户偏好设置简单功能的实现

写在前面: 先来陈述一下为什么会有这样一个需求和这篇博文. 这是公司的一个项目,我们负责前端,后台服务由其他公司负责.该系统有一个系统偏好设置模块,用户可以设置系统的背景图片等系统样式,因为这是一个比较简单的功能,所以当时没有让后台公司来实现,由自己公司的一个领导编写了一个Servlet.但是由于服务器故障被格式化之后,这个Servlet就丢失了.本来打算跟领导汇报的,但是又怕挨批评,而且这个功能也并不复杂,所以决定自己实现一下吧.但是作为一个对Java一点都不懂的我来说,还是废了不少功夫的,所

citrix user profile management 用户配置存储到网络共享文件夹

在网上找了很多user profile management配了一天也没配好,最后翻墙在youtube上找到了答案,坑了我一天!!!!描述都不怎么明确,还是自己写篇blog,大家少走点弯路.给楼主支持就是对我最大的回报.blog会经常更新,望大家多多支持. 需求:用户配置重定向到网络共享文件夹上进行统一管理,登录时自动从共享文件夹上加载用户配置. 现有环境:AD域1台(win server 2012)+客户机1台(winxp)+citrix user profile management 4.1

Android - 保存用户首次使用状态(SharedPreferences)

保存用户首次使用状态(SharedPreferences) 本文地址: http://blog.csdn.net/caroline_wendy 用户首次登陆时, 可能需要用户教育, 讲解界面操作, 但是不应该在以后的登陆中, 继续显示, 则需要记录用户的登陆状态; 可以使用SharedPreferences进行记录. 在库中, 可以使用封装的PreferenceUtils类库, 使用方法如下: boolean hasShown = PreferenceUtils.get(this, FIRST_

(十)android 中数据存储与访问——使用SharedPreferences保存数据

10.1 SharedPreferences概述 数据存储方式有五种,前面介绍的是通过IO流以文件的方式存储数据,这里学习的SharedPreferences方式保存的数据,主要保存的是用户的偏好设置. 很多时候,我们开发的程序是需要向用户提供软件参数设置功能的.用户根据自己的兴趣爱好对软件的各项参数进行配置,以符合自己的使用习惯. 例如,我们使用eclipse的时候,可以设置字体的显示颜色.大小等.Eclipse内部使用的是xml格式的文件来保存软件的配置参数. 如果我们要在安卓中保存用户在软

Android中利用SharedPreferences保存信息

package com.example.sharepreferen; import android.content.Context; import android.content.SharedPreferences; import android.content.SharedPreferences.Editor; import android.os.Bundle; import android.support.v7.app.ActionBarActivity; import android.vi