androidstudio开发计时器(androidstudio关闭计时器)

技术android studio如何绑定服务和线程实现计时器这篇文章主要介绍了android studio如何绑定服务和线程实现计时器,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让

本文主要介绍了androidstudio如何绑定服务和线程来实现定时器,具有一定的参考价值。有兴趣的朋友可以参考一下。希望大家看完这篇文章后收获多多。让边肖带你去了解一下。

实验目的:

熟悉并掌握Android线程的使用。

实验要求:

1.完成带起止功能的秒表。

2.通过绑定服务实现函数,通过线程处理程序更新接口。

这一章没有花太多时间去学习,还有很多其他的东西,所以就简单的实现了,生命周期中还有一些没有完成的地方,所以

主要思路是:在服务中启动一个线程实现计数功能,并调用每10ms更新一次接口的功能,这需要使用Thread handler。当然,它还需要一些公共函数来控制活动调用的开始和停止。以与绑定服务相同的方式,可以在活动中获得服务实例。因此以activity为控制器,调用控制服务启停的功能或对不同按钮事件清零计数的功能,从而实现定时器功能。实验完成后,发现用这种方式实现的定时器精度比较粗糙,但功能正常。更好的方法是使用时间函数。但是,这个实验的目的是练习线程和绑定服务的使用,所以没有改变。

androidstudio如何绑定服务和线程实现计时器

androidstudio如何绑定服务和线程实现计时器

实验代码:

MyService .java

package com . example . Shiyan 5;

importandroid . app . service;

importandroid . content . intent;

importandroid . OS . binder;

importandroid . OS . ibinder;

public classmy service extendsservice {

privatefinitibinderbinder=newMyBinder();

privateThreadworkThread

private intcount=0;

privatebooleanc _ stop=true

public my service(){ 0

}

publicvoidclearcount()

{

计数=0;

}

public void countstop(){ 0

c _ stop=真;

}

public void countstart(){ 0

c _ stop=false

}

@覆盖

publicationcreate(){ 0

super . OnCreate();

nbsp;      workThread=new Thread(null,backgroundWork);
        workThread.start();
    }

    @Override
    public boolean onUnbind(Intent intent) {
        return super.onUnbind(intent);
    }

    public class MyBinder extends Binder {
        MyService getService() {
            return MyService.this;
        }
    }

    @Override
    public IBinder onBind(Intent intent) {
        // TODO: Return the communication channel to the service.
        return binder;
        //throw new UnsupportedOperationException("Not yet implemented");

    }

    private Runnable backgroundWork =new Runnable() {
        @Override
        public void run() {
            try {
                while(true)
                {
                    if(c_stop==false)
                    {
                        count++;
                    }
                    MainActivity.UpdateGUI(count);
                    Thread.sleep(10);//10毫秒计数一次Z
                }
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }
    };
}

MainActivity.java

package com.example.shiyan5;

import androidx.appcompat.app.AppCompatActivity;

import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.content.ServiceConnection;
import android.os.Bundle;
import android.os.Handler;
import android.os.IBinder;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;

public class MainActivity extends AppCompatActivity {

    static TextView textView1,textView2;
    Button bt_clear,bt_stop,bt_start;
    MyService mService;
    boolean mBound;
    static int count;
    static Handler handler=new Handler();

    private ServiceConnection connection = new ServiceConnection() {
        @Override
        public void onServiceConnected(ComponentName className, IBinder service) {
            MyService.MyBinder binder = (MyService.MyBinder) service;
            mService = binder.getService();//通过这个来获取服务的实例
            mBound = true;
        }
        @Override
        public void onServiceDisconnected(ComponentName arg0) {
            mBound = false;
        }
    };

    public static void UpdateGUI(int s_count)
    {
        count=s_count;
        handler.post(RefreshText);
    }

    private static Runnable RefreshText=new Runnable() {
        @Override
        public void run() {
            String sa,sb,sc;
            int a=count%100;
            if(a<10)sa="0"+a;else sa=String.valueOf(a);
            int b=(count/100)%60;
            if(b<10)sb="0"+b;else sb=String.valueOf(b);
            int c=(count/100/60)%60;
            if(c<10)sc="0"+c;else sc=String.valueOf(c);
            textView2.setText(sc+":"+sb+":"+sa);
        }
    };
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        mBound=false;
        textView1=(TextView) findViewById(R.id.textview);
        textView2=(TextView) findViewById(R.id.textview_2);
        bt_clear=(Button) findViewById(R.id.bt_clear);
        bt_stop=(Button) findViewById(R.id.bt_stop);
        bt_start=(Button) findViewById(R.id.bt_start);

        bt_clear.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                if(mBound==true){
                    mService.clearcount();
                    mService.countstop();
                }
            }
        });

        bt_start.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                if(mBound==true)
                {
                    mService.countstart();
                }
            }
        });

        bt_stop.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                if(mBound==true)
                {
                    mService.countstop();
                }
            }
        });
    }

    @Override
    protected void onStart() {
        super.onStart();
        Intent intent=new Intent(this,MyService.class);
        bindService(intent,connection, Context.BIND_AUTO_CREATE);
    }

    @Override
    protected void onStop() {
        super.onStop();
        unbindService(connection);
        mBound=false;
    }
}

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    >
    <TextView
        android:id="@+id/textview"
        android:layout_gravity="center_horizontal"
        android:text="计时器"
        android:textSize="46sp"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"/>
    
    <TextView
        android:id="@+id/textview_2"
        android:gravity="center"
        android:textSize="54sp"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"/>

    <LinearLayout
        android:layout_gravity="center_horizontal"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content">
        <Button
            android:id="@+id/bt_clear"
            android:text="清零"
            android:textSize="36sp"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"/>
        <Button
            android:id="@+id/bt_stop"
            android:text="暂停"
            android:textSize="36sp"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"/>
        <Button
            android:id="@+id/bt_start"
            android:text="计时"
            android:textSize="36sp"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"/>
    </LinearLayout>

</LinearLayout>

感谢你能够认真阅读完这篇文章,希望小编分享的“android studio如何绑定服务和线程实现计时器”这篇文章对大家有帮助,同时也希望大家多多支持,关注行业资讯频道,更多相关知识等着你来学习!

内容来源网络,如有侵权,联系删除,本文地址:https://www.230890.com/zhan/153407.html

(0)

相关推荐

  • ui设计用什么软件sketch(ui设计必备技能你会用sketch吗)

    技术UI设计为什么要学Sketch本篇文章给大家分享的是有关UI设计为什么要学Sketch,小编觉得挺实用的,因此分享给大家学习,希望大家阅读完这篇文章后可以有所收获,话不多说,跟着小编一起来看看吧。Sketch是UI设

    攻略 2021年12月24日
  • ios开发中的技术难点(ios开发注意事项)

    技术iOS开发安全的方法是什么这篇文章主要讲解了“iOS开发安全的方法是什么”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“iOS开发安全的方法是什么”吧! 一、网络方面用

    攻略 2021年12月20日
  • mathJS应用

    技术mathJS应用 mathJS应用最近开发遇到存计算公式在字段里,前端取出来使用的问题。本来想着使用eval计算字符串的,且不说eval本身,直接使用也涉及到js的精度问题(eg: 0.1+0.2)

    礼包 2021年11月14日
  • 缓存视频怎样转入本地视频,uc下载的视屏怎么转到本地

    技术缓存视频怎样转入本地视频,uc下载的视屏怎么转到本地打开UC浏览器点击下面状态栏中间的菜单按钮,选择【我的视频】;然后点击【已缓存的视频】;长按视频弹出的菜单中就可以看到【打开目录】;再然后长按需要移动的视频,选择【

    生活 2021年10月25日
  • mysql常用的查询语句(mysql用来分析查询的语句)

    技术MySQL中常用的查询子句有哪些这篇文章给大家分享的是有关MySQL中常用的查询子句有哪些的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。对于数据分析,MySQL多采用查询,如数据的排序、分

    攻略 2021年12月20日
  • 抖音怎么刷粉丝,刷抖音粉丝网站最便宜?

    技术抖音怎么刷粉丝,刷抖音粉丝网站最便宜?抖音便宜刷粉网站,刷抖音粉丝网站最便宜抖音刷粉丝的平台网站搜索应该也很多,价格差异也很大,原因主要是看做单的号的质量,有的机器刷单,有的是真人接单,有的是群派单,还有的是真机养的

    测评 2021年10月21日