博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
AndroidFM模块学习之四源码分析(九)
阅读量:5839 次
发布时间:2019-06-18

本文共 4701 字,大约阅读时间需要 15 分钟。

hot3.png

接上一篇,接下来我们看看android\vendor\qcom\opensource\fm\fmapp2\src\com\caf\fmradio\PresetList.java

定义一个List列表List<PresetStation>mPresetList = new ArrayList<PresetStation>();

同步电台数量

public synchronized int getStationCount(){

        return mPresetList.size();
    }

获得电台名字

 public synchronized String getStationName(int stationNum){

        String name = "";
        if (mPresetList.size() > stationNum){
            name = mPresetList.get(stationNum).getName();
        }
        return name;
    }

获取电台频率

public synchronized int getStationFrequency(int stationNum){

        int frequency = 102100;
        if (mPresetList.size() > stationNum){
            frequency = mPresetList.get(stationNum).getFrequency();
        }
        return frequency;
    }

设置电台频率

public synchronized void setStationFrequency(int stationNum, int frequency){

        PresetStation mStation = mPresetList.get(stationNum);
        mStation.setFrequency(frequency);
    }
设置电台名字

public synchronized void setStationName(int stationNum, String name){

        PresetStation mStation = mPresetList.get(stationNum);
        mStation.setName(name);
    }

通过ID得到电台

public synchronized PresetStation getStationFromIndex(int index){

        int totalPresets = mPresetList.size();
        PresetStation station = null;
        if (index < totalPresets) {
            station = mPresetList.get(index);
        }
        return station;
    }

通过频率得到电台

public synchronized PresetStation getStationFromFrequency(int frequency){

        int totalPresets = mPresetList.size();
        for (int presetNum = 0; presetNum < totalPresets; presetNum++ ) {
            PresetStation station = mPresetList.get(presetNum);
            if (station != null) {
                if(frequency == station.getFrequency()) {
                    return station;
                }
            }
        }
        return null;
    }

添加电台名字和频率

public synchronized PresetStation addStation(String name, int freq){

        PresetStation addStation = new PresetStation(name, freq);
        if(addStation != null) {
            mPresetList.add(addStation);
        }
        return addStation;
    }

添加电台

public synchronized PresetStation addStation(PresetStation station){

        PresetStation addStation = null;
        if(station != null) {
            addStation = new PresetStation (station);
            mPresetList.add(addStation);
        }
        return addStation;
    }

删除电台

 public synchronized void removeStation(int index){

       int totalPresets = mPresetList.size();
       if((index >= 0) && (index < totalPresets))
       {
          mPresetList.remove(index);
       }
    }

清除调频列表

public synchronized void clear(){

        mPresetList.clear();
    }

/ *如果用户选择一个新电台在这个列表中,将调用这个函数来更新列表。

* /

public synchronized boolean setSelectedStation(PresetStation selectStation){

        int totalPresets = mPresetList.size();
        if (selectStation != null) {
            for (int presetNum = 0; presetNum < totalPresets; presetNum++ ) {
                PresetStation station = mPresetList.get(presetNum);
                if (station != null) {
                    if(selectStation.getFrequency() == station.getFrequency()) {
                        if(selectStation.getName().equalsIgnoreCase(station.getName())) {
                            mCurrentStation = presetNum;
                            return true;
                        }
                    }
                }
            }
        }
        return false;
    }

/ *检查是否有相同电台存在在列表中

* /

public synchronized boolean sameStationExists(PresetStation compareStation){

        int totalPresets = mPresetList.size();
        if (compareStation != null) {
            for (int presetNum = 0; presetNum < totalPresets; presetNum++ ) {
                PresetStation station = mPresetList.get(presetNum);
                if (station != null) {
                    if(compareStation.getFrequency() == station.getFrequency()) {
                        return true;
                    }
                }
            }
        }
        return false;
    }

/ *如果用户在这个列表中选择一个新电台,将调用这个例程

*更新列表。

* /

public synchronized boolean setSelectedStation(int stationIndex){

        boolean foundStation = false;
        int totalPresets = mPresetList.size();
        if (stationIndex < totalPresets) {
            mCurrentStation = stationIndex;
            foundStation = true;
        }
        return foundStation;
    }

选择电台

public synchronized void selectStation(PresetStation selectStation){

        int totalPresets = mPresetList.size();
        if (selectStation != null) {
            for (int presetNum = 0; presetNum < totalPresets; presetNum++ ) {
                PresetStation station = mPresetList.get(presetNum);
                if (station != null) {
                    if(selectStation.getFrequency() == station.getFrequency()) {
                        mCurrentStation    = presetNum;
                        return;
                    }
                }
            }
        }
    }

获取选择的站

public synchronized PresetStation getSelectedStation(){

        int totalPresets = mPresetList.size();
        PresetStation station = null;
        if (mCurrentStation < totalPresets) {
            station = mPresetList.get(mCurrentStation);
        }
        return station;
    }

选择下一个电台

public synchronized PresetStation selectNextStation(){

        int totalPresets = mPresetList.size();
        PresetStation station = null;
        if(totalPresets > 0) {
            mCurrentStation ++;
            if ( (mCurrentStation) >= totalPresets) {
                mCurrentStation =0;
            }
            station = mPresetList.get(mCurrentStation);
        }
        return station;
    }

选择上一个电台

 public synchronized PresetStation selectPrevStation(){

        int totalPresets = mPresetList.size();
        PresetStation station = null;
        if(totalPresets > 0) {
            mCurrentStation --;
            if ( mCurrentStation < 0) {
                mCurrentStation = totalPresets-1;
            }
            station = mPresetList.get(mCurrentStation);
        }
        return station;

 

转载于:https://my.oschina.net/u/920274/blog/2998544

你可能感兴趣的文章
使用chrome performance 查看页面性能
查看>>
OpenCV3编程入门学习一架构分析
查看>>
安装docker和docker-compose
查看>>
分布式事务中间件 Fescar—RM 模块源码解读
查看>>
MYSQL中视图的使用
查看>>
四种方法实现──三栏布局(圣杯布局、双飞翼布局)
查看>>
函数&作用域提升
查看>>
第十三天-企业应用架构模式-对象-关系元数据映射模式
查看>>
资深程序员的书单 - 转载自@Axb
查看>>
Laravel核心解读--异常处理
查看>>
待实践的解决方案---微信浏览器里粘贴功能不好使
查看>>
spring cloud gateway (5)其他
查看>>
【译】 WebSocket 协议第七章——关闭连接(Closing the Connection)
查看>>
以太坊中的账户、交易、Gas和区块Gas Limit等概念
查看>>
记住这35个英文单词,你就可以在RPA界混了!
查看>>
前嗅ForeSpider数据建表和高级配置界面介绍
查看>>
「前端面试题系列7」Javascript 中的事件机制(从原生到框架)
查看>>
RxJS 实现摩斯密码(Morse) 【内附脑图】
查看>>
爬虫提交form表单中含有(unable to decode value)解决方法
查看>>
CSS实用技巧干货
查看>>