做一款自己的安卓天氣鬧鐘(6)——使用sqlite保存設(shè)置選項(xiàng)

知識(shí)點(diǎn)

  1. sqlite
    無(wú)需多介紹,能看到這兒的肯定都知道
  2. SQLiteOpenHelper
    抽象類眯亦,我們通過(guò)繼承該類,然后重寫數(shù)據(jù)庫(kù)創(chuàng)建以及更新的方法, 我們還可以通過(guò)該類的對(duì)象獲得數(shù)據(jù)庫(kù)實(shí)例蛤织,或者關(guān)閉數(shù)據(jù)庫(kù)!
  3. SQLiteDatabase數(shù)據(jù)庫(kù)訪問(wèn)類
    我們可以通過(guò)該類的對(duì)象來(lái)對(duì)數(shù)據(jù)庫(kù)做一些增刪改查的操作
  4. Cursor游標(biāo)
    有點(diǎn)類似于JDBC里的resultset鸿染,結(jié)果集指蚜!可以簡(jiǎn)單理解為指向數(shù)據(jù)庫(kù)中某 一個(gè)記錄的指針!

編寫代碼

  1. 創(chuàng)建自己的sqlite管理類
package love.xzjs.t_android;

import android.content.ContentValues;
import android.content.Context;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;

/**
 * Created by Administrator on 2017/12/18.
 */

public class MyDBOpenHelper extends SQLiteOpenHelper {
    public MyDBOpenHelper(Context context, String name, SQLiteDatabase.CursorFactory factory, int version) {
        super(context, name, factory, version);
    }

    @Override
    /**
     * 數(shù)據(jù)庫(kù)第一次創(chuàng)建
     */
    public void onCreate(SQLiteDatabase sqLiteDatabase) {
        sqLiteDatabase.execSQL("CREATE TABLE config(" +
                "id INTEGER PRIMARY KEY AUTOINCREMENT," +
                "time INTEGER(1)," +
                "date INTEGER(1)," +
                "week INTEGER(1)," +
                "location VARCHAR(20)," +
                "firstDay INTEGER(1)," +
                "secondDay INTEGER(1)," +
                "thirdDay INTEGER(1)," +
                "num INTEGER(1))");

        ContentValues values=new ContentValues();
        values.put("time",1);
        values.put("date",1);
        values.put("week",1);
        values.put("firstDay",1);
        values.put("secondDay",1);
        values.put("thirdDay",1);
        values.put("num",3);
        values.put("location","");
        sqLiteDatabase.insert("config",null,values);
    }

    @Override
    /**
     * 數(shù)據(jù)庫(kù)更新
     */
    public void onUpgrade(SQLiteDatabase sqLiteDatabase, int i, int i1) {

    }
}

  1. 創(chuàng)建配置實(shí)體類Config.java
package love.xzjs.t_android;

/**
 * Created by Administrator on 2017/12/18.
 */

public class Config {
    private int id,time,date,week,firstDay,secondDay,thirdDay,num;
    private String location;

    public Config(int id, int time, int date, int week, int firstDay, int secondDay, int thirdDay, int num, String location) {
        this.id = id;
        this.time = time;
        this.date = date;
        this.week = week;
        this.firstDay = firstDay;
        this.secondDay = secondDay;
        this.thirdDay = thirdDay;
        this.num = num;
        this.location = location;
    }

    public Config(){
        this.id = 0;
        this.time = 0;
        this.date = 0;
        this.week = 0;
        this.firstDay = 0;
        this.secondDay = 0;
        this.thirdDay = 0;
        this.num = 3;
        this.location = "";

    }

    public int getId() {
        return id;
    }

    public void setId(int id) {
        this.id = id;
    }

    public int getTime() {
        return time;
    }

    public void setTime(int time) {
        this.time = time;
    }

    public int getDate() {
        return date;
    }

    public void setDate(int date) {
        this.date = date;
    }

    public int getWeek() {
        return week;
    }

    public void setWeek(int week) {
        this.week = week;
    }

    public int getFirstDay() {
        return firstDay;
    }

    public void setFirstDay(int firstDay) {
        this.firstDay = firstDay;
    }

    public int getSecondDay() {
        return secondDay;
    }

    public void setSecondDay(int secondDay) {
        this.secondDay = secondDay;
    }

    public int getThirdDay() {
        return thirdDay;
    }

    public void setThirdDay(int thirdDay) {
        this.thirdDay = thirdDay;
    }

    public int getNum() {
        return num;
    }

    public void setNum(int num) {
        this.num = num;
    }

    public String getLocation() {
        return location;
    }

    public void setLocation(String location) {
        this.location = location;
    }
}

  1. 在Show.java中使用sqlite管理類
 package love.xzjs.t_android;

import android.Manifest;
import android.app.Activity;
import android.content.ContentValues;
import android.content.Context;
import android.content.pm.PackageManager;
import android.content.res.Resources;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.os.Build;
import android.os.Bundle;
import android.support.annotation.RequiresApi;
import android.support.v4.app.ActivityCompat;
import android.support.v4.app.Fragment;
import android.util.DisplayMetrics;
import android.util.Log;
import android.util.TypedValue;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.AdapterView;
import android.widget.CompoundButton;
import android.widget.LinearLayout;
import android.widget.Spinner;
import android.widget.Switch;
import android.widget.TextView;

import com.baidu.location.BDLocation;
import com.baidu.location.BDLocationListener;
import com.baidu.location.LocationClient;
import com.baidu.location.LocationClientOption;

import java.util.HashMap;

public class Show extends Fragment implements CompoundButton.OnCheckedChangeListener, BDLocationListener, AdapterView.OnItemSelectedListener {
    private TextView textViewTime, textViewDate, textViewWeek, _locationTextView;
    private Switch switchTime, switchDate, switchWeek, switchWeather1, switchWeather2, switchWeather3;
    private LinearLayout linearLayout1, linearLayout2, linearLayout3;
    private Spinner spinner;

    private LocationClient _locationClient;
    private static final int BAIDU_READ_PHONE_STATE = 100;

    private MyDBOpenHelper myDBOpenHelper;
    private Config config;
    private int id;
    private ContentValues values;
    private HashMap<String, TextView> textViewHashMap;
    private HashMap<String, Switch> switchHashMap;
    private HashMap<String, LinearLayout> linearLayoutHashMap;

    //判斷是否為剛進(jìn)去時(shí)觸發(fā)onItemSelected的標(biāo)志
    private boolean spinnerSelected = false;

    @RequiresApi(api = Build.VERSION_CODES.M)
    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        View view = inflater.inflate(R.layout.config_show, container, false);

        textViewTime = (TextView) view.findViewById(R.id.time_label);
        textViewDate = (TextView) view.findViewById(R.id.date);
        textViewWeek = (TextView) view.findViewById(R.id.week);
        linearLayout1 = (LinearLayout) view.findViewById(R.id.weather_today);
        linearLayout2 = (LinearLayout) view.findViewById(R.id.weather_tomorrow);
        linearLayout3 = (LinearLayout) view.findViewById(R.id.weather_after_tomorrow);
        _locationTextView = view.findViewById(R.id.locationTextView);
        spinner = view.findViewById(R.id.spinner1);
        values = new ContentValues();

        //根據(jù)屏幕寬度確定字體的大小
        Resources resources = this.getResources();
        DisplayMetrics dm = resources.getDisplayMetrics();
        int width = dm.widthPixels;
        textViewTime.setTextSize(TypedValue.COMPLEX_UNIT_SP, 150 * width / 1794);

        //綁定switch事件
        switchTime = (Switch) view.findViewById(R.id.switch_time);
        switchDate = (Switch) view.findViewById(R.id.switch_date);
        switchWeek = (Switch) view.findViewById(R.id.switch_week);
        switchWeather1 = (Switch) view.findViewById(R.id.switch_weather1);
        switchWeather2 = (Switch) view.findViewById(R.id.switch_weather2);
        switchWeather3 = (Switch) view.findViewById(R.id.switch_weather3);
        switchTime.setOnCheckedChangeListener(this);
        switchDate.setOnCheckedChangeListener(this);
        switchWeek.setOnCheckedChangeListener(this);
        switchWeather1.setOnCheckedChangeListener(this);
        switchWeather2.setOnCheckedChangeListener(this);
        switchWeather3.setOnCheckedChangeListener(this);

        _locationClient = new LocationClient(getContext());
        _locationClient.registerLocationListener(this);
        LocationClientOption option = new LocationClientOption();
        option.setIsNeedAddress(true);
        option.setLocationMode(LocationClientOption.LocationMode.Hight_Accuracy);//設(shè)置高精度定位定位模式
        option.setOpenGps(true); // 打開gps
        option.setCoorType("bd09ll"); // 設(shè)置坐標(biāo)類型
        option.setScanSpan(1000);
        _locationClient.setLocOption(option);

        if (ActivityCompat.checkSelfPermission(getActivity(), Manifest.permission.READ_PHONE_STATE) != PackageManager.PERMISSION_GRANTED) {
            // 申請(qǐng)一個(gè)(或多個(gè))權(quán)限涨椒,并提供用于回調(diào)返回的獲取碼(用戶定義)
            requestPermissions(new String[]{Manifest.permission.READ_PHONE_STATE}, BAIDU_READ_PHONE_STATE);
        } else {
            _locationClient.start();
        }

        textViewHashMap=new HashMap<>();
        textViewHashMap.put("time", textViewTime);
        textViewHashMap.put("date", textViewDate);
        textViewHashMap.put("week", textViewWeek);
        linearLayoutHashMap=new HashMap<>();
        linearLayoutHashMap.put("firstDay", linearLayout1);
        linearLayoutHashMap.put("secondDay", linearLayout2);
        linearLayoutHashMap.put("thirdDay", linearLayout3);
        switchHashMap=new HashMap<>();
        switchHashMap.put("time", switchTime);
        switchHashMap.put("date", switchDate);
        switchHashMap.put("week", switchWeek);
        switchHashMap.put("firstDay", switchWeather1);
        switchHashMap.put("secondDay", switchWeather2);
        switchHashMap.put("thirdDay", switchWeather3);

        myDBOpenHelper = new MyDBOpenHelper(getActivity(), "clock.db", null, 1);
        SQLiteDatabase db = myDBOpenHelper.getWritableDatabase();
        Cursor cursor = db.query("config", null, null, null, null, null, null);
        if (cursor.moveToFirst()) {
            id = cursor.getInt(cursor.getColumnIndex("id"));
            values.put("time", cursor.getInt(cursor.getColumnIndex("time")));
            values.put("date", cursor.getInt(cursor.getColumnIndex("date")));
            values.put("week", cursor.getInt(cursor.getColumnIndex("week")));
            values.put("location", cursor.getInt(cursor.getColumnIndex("location")));
            values.put("firstDay", cursor.getInt(cursor.getColumnIndex("firstDay")));
            values.put("secondDay", cursor.getInt(cursor.getColumnIndex("secondDay")));
            values.put("thirdDay", cursor.getInt(cursor.getColumnIndex("thirdDay")));
            values.put("num", cursor.getInt(cursor.getColumnIndex("num")));
            setViewData();
        }

        return view;
    }

    /**
     * 綁定數(shù)據(jù)
     */
    private void setViewData() {
        for (String key : values.keySet()) {
            boolean status = (int) values.get(key) == 1;
            switch (key) {
                case "time":
                case "date":
                case "week":
                    textViewHashMap.get(key).setVisibility(status ? View.VISIBLE : View.GONE);
                    switchHashMap.get(key).setChecked(status);
                    break;
                case "firstDay":
                case "secondDay":
                case "thirdDay":
                    linearLayoutHashMap.get(key).setVisibility(status ? View.VISIBLE : View.GONE);
                    switchHashMap.get(key).setChecked(status);
                    break;
                case "num":
                    spinnerSelected = false;
                    int num = (int) values.get(key) - 1;
                    spinner.setSelection(num);
                    break;
                default:
                    break;
            }
        }
    }

    /**
     * Called when the Fragment is no longer started.  This is generally
     * tied to {@link Activity#onStop() Activity.onStop} of the containing
     * Activity's lifecycle.
     */
    @Override
    public void onStop() {
        super.onStop();

        SQLiteDatabase db = myDBOpenHelper.getWritableDatabase();
        db.update("config", values, "id=?", new String[]{String.valueOf(id)});
    }

    /**
     * 重寫switch狀態(tài)變更事件
     *
     * @param compoundButton
     * @param b
     */
    @Override
    public void onCheckedChanged(CompoundButton compoundButton, boolean b) {
        boolean isChecked = compoundButton.isChecked();
        switch (compoundButton.getId()) {
            case R.id.switch_time:
                textViewTime.setVisibility(isChecked ? View.VISIBLE : View.GONE);
                values.put("time", isChecked ? 1 : 0);
                break;
            case R.id.switch_date:
                textViewDate.setVisibility(isChecked ? View.VISIBLE : View.GONE);
                values.put("date", isChecked ? 1 : 0);
                break;
            case R.id.switch_week:
                textViewWeek.setVisibility(isChecked ? View.VISIBLE : View.GONE);
                values.put("week", isChecked ? 1 : 0);
                break;
            case R.id.switch_weather1:
                linearLayout1.setVisibility(isChecked ? View.VISIBLE : View.GONE);
                values.put("firstDay", isChecked ? 1 : 0);
                break;
            case R.id.switch_weather2:
                linearLayout2.setVisibility(isChecked ? View.VISIBLE : View.GONE);
                values.put("secondDay", isChecked ? 1 : 0);
                break;
            case R.id.switch_weather3:
                linearLayout3.setVisibility(isChecked ? View.VISIBLE : View.GONE);
                values.put("thirdDay", isChecked ? 1 : 0);
                break;
        }
    }

    @Override
    public void onReceiveLocation(BDLocation bdLocation) {
        String addr = bdLocation.getAddrStr();    //獲取詳細(xì)地址信息
        String country = bdLocation.getCountry();    //獲取國(guó)家
        String province = bdLocation.getProvince();    //獲取省份
        String city = bdLocation.getCity();    //獲取城市
        String district = bdLocation.getDistrict();    //獲取區(qū)縣
        String street = bdLocation.getStreet();    //獲取街道信息
        _locationTextView.setText(city + district);
        values.put("location", city + district);
        _locationClient.stop();
    }

    @Override
    public void onRequestPermissionsResult(int requestCode, String[] permissions, int[] grantResults) {
        super.onRequestPermissionsResult(requestCode, permissions, grantResults);
        switch (requestCode) {
            //requestCode即所聲明的權(quán)限獲取碼摊鸡,在checkSelfPermission時(shí)傳入
            case 1:
                BAIDU_READ_PHONE_STATE:
                if (grantResults[0] == PackageManager.PERMISSION_GRANTED) {
                    _locationClient.start();
                } else {
                    Log.i("tag", "onRequestPermissionsResult: " + "沒(méi)有獲取到權(quán)限");
                }
                break;
            default:
                break;
        }
    }

    @Override
    public void onItemSelected(AdapterView<?> adapterView, View view, int i, long l) {
        if (spinnerSelected) {
            values.put("num", i + 1);
        } else {
            spinnerSelected = true;
        }
    }

    @Override
    public void onNothingSelected(AdapterView<?> adapterView) {

    }
}

效果圖

demo.gif

代碼地址

https://github.com/xzjs/t_android

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末绽媒,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子免猾,更是在濱河造成了極大的恐慌是辕,老刑警劉巖,帶你破解...
    沈念sama閱讀 211,265評(píng)論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件猎提,死亡現(xiàn)場(chǎng)離奇詭異获三,居然都是意外死亡,警方通過(guò)查閱死者的電腦和手機(jī)锨苏,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,078評(píng)論 2 385
  • 文/潘曉璐 我一進(jìn)店門疙教,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái),“玉大人伞租,你說(shuō)我怎么就攤上這事贞谓。” “怎么了肯夏?”我有些...
    開封第一講書人閱讀 156,852評(píng)論 0 347
  • 文/不壞的土叔 我叫張陵经宏,是天一觀的道長(zhǎng)。 經(jīng)常有香客問(wèn)我驯击,道長(zhǎng)烁兰,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,408評(píng)論 1 283
  • 正文 為了忘掉前任徊都,我火速辦了婚禮沪斟,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘暇矫。我一直安慰自己主之,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,445評(píng)論 5 384
  • 文/花漫 我一把揭開白布李根。 她就那樣靜靜地躺著槽奕,像睡著了一般。 火紅的嫁衣襯著肌膚如雪房轿。 梳的紋絲不亂的頭發(fā)上粤攒,一...
    開封第一講書人閱讀 49,772評(píng)論 1 290
  • 那天,我揣著相機(jī)與錄音囱持,去河邊找鬼夯接。 笑死,一個(gè)胖子當(dāng)著我的面吹牛纷妆,可吹牛的內(nèi)容都是我干的盔几。 我是一名探鬼主播,決...
    沈念sama閱讀 38,921評(píng)論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼掩幢,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼逊拍!你這毒婦竟也來(lái)了上鞠?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,688評(píng)論 0 266
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤顺献,失蹤者是張志新(化名)和其女友劉穎旗国,沒(méi)想到半個(gè)月后枯怖,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體注整,經(jīng)...
    沈念sama閱讀 44,130評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,467評(píng)論 2 325
  • 正文 我和宋清朗相戀三年度硝,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了肿轨。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,617評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡蕊程,死狀恐怖椒袍,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情藻茂,我是刑警寧澤驹暑,帶...
    沈念sama閱讀 34,276評(píng)論 4 329
  • 正文 年R本政府宣布,位于F島的核電站辨赐,受9級(jí)特大地震影響优俘,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜掀序,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,882評(píng)論 3 312
  • 文/蒙蒙 一帆焕、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧不恭,春花似錦叶雹、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,740評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)。三九已至沾瓦,卻和暖如春满着,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背暴拄。 一陣腳步聲響...
    開封第一講書人閱讀 31,967評(píng)論 1 265
  • 我被黑心中介騙來(lái)泰國(guó)打工漓滔, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人乖篷。 一個(gè)月前我還...
    沈念sama閱讀 46,315評(píng)論 2 360
  • 正文 我出身青樓响驴,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親撕蔼。 傳聞我的和親對(duì)象是個(gè)殘疾皇子豁鲤,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,486評(píng)論 2 348