android 入门-Service实时向Activity通过BroadcastReceiver传递数据
引文:
http://www.cnblogs.com/linjiqin/p/3147764.html
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".EX0315" > <TextView
android:layout_width="100dp"
android:layout_height="wrap_content"
android:id="@+id/Ex0315TextView"
android:layout_marginLeft="20dp"
android:layout_marginTop="0dp"
android:text="@string/hello_world" /> <Button android:id="@+id/Ex0315StartButton"
android:layout_width="100dp"
android:layout_height="wrap_content"
android:layout_marginLeft="20dp"
android:layout_marginTop="40dp"
android:text="@string/ex0315Startbutton" />
<Button android:id="@+id/Ex0315SendButton"
android:layout_width="100dp"
android:layout_height="wrap_content"
android:layout_marginLeft="20dp"
android:layout_marginTop="110dp"
android:text="@string/ex0315Sendbutton" />
</RelativeLayout>
package com.iruisi.service; import android.app.Service;
import android.content.Intent;
import android.os.Handler;
import android.os.IBinder;
import android.util.Log; public class Ex0315Service extends Service {
private static final String TAG = "MyService";
private Handler mHandler=new Handler();
private int mCount=;
private Runnable mRunnable = new Runnable() { @Override
public void run() {
mCount++;
sendMsg2Activity("start send to service");
Log.i("hippo","计算器"+Integer.toString(mCount));
mHandler.postDelayed(mRunnable,);
}
}; @Override
public void onCreate() {
super.onCreate();
Log.e(TAG, "start onCreate~~~");
//开启服务 延时1s
mHandler.postDelayed(mRunnable,);
} private void sendMsg2Activity(String msg){ //发送广播
Intent intent=new Intent();
intent.putExtra("count", mCount);
intent.setAction("com.iruisi.service.Ex0315Service");
sendBroadcast(intent);
}
@Override
public IBinder onBind(Intent intent) { return null;
}
@Override
public void onDestroy() {
mHandler.removeCallbacks(mRunnable);
super.onDestroy();
}
@Override
public boolean onUnbind(Intent intent) {
// TODO Auto-generated method stub
return super.onUnbind(intent);
}
@Override
public void onRebind(Intent intent) {
// TODO Auto-generated method stub
super.onRebind(intent);
}
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
// TODO Auto-generated method stub
return super.onStartCommand(intent, flags, startId);
}
}
package com.example.hellowrold; import com.example.hellowrold.R.id;
import com.iruisi.service.Ex0315Service; import android.R.string;
import android.os.Bundle;
import android.app.Activity;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
import android.view.Menu;
import android.view.View;
import android.widget.Button;
import android.widget.TextView; public class EX0315 extends Activity { private TextView mTextView;
private Button startButton;
private Button sendbuButton;
private Ex0315ServiceReceiver receiver=null;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_ex0315);
mTextView=(TextView)findViewById(id.Ex0315TextView);
startButton=(Button)findViewById(id.Ex0315StartButton);
startButton.setOnClickListener(new Button.OnClickListener() { @Override
public void onClick(View v) {
Intent sIntent=new Intent(EX0315.this,Ex0315Service.class);
//sIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startService(sIntent); receiver=new Ex0315ServiceReceiver();
IntentFilter mIntentFilter=new IntentFilter();
mIntentFilter.addAction("com.iruisi.service.Ex0315Service");
EX0315.this.registerReceiver(receiver, mIntentFilter);
}
});
sendbuButton=(Button)findViewById(id.Ex0315SendButton);
sendbuButton.setOnClickListener(new Button.OnClickListener() { @Override
public void onClick(View v) {
Intent sIntent=new Intent(EX0315.this,Ex0315Service.class);
stopService(sIntent);
}
});
mTextView.setText("hahh");
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.ex0315, menu);
return true;
} public class Ex0315ServiceReceiver extends BroadcastReceiver{
@Override
public void onReceive(Context context, Intent intent) {
Bundle mBundle=intent.getExtras();
int count=mBundle.getInt("count");
//其实不用在广播里重新要获取一下TextView 对象 setText参数是字符串类型,不是整型
//mTextView=(TextView)findViewById(id.Ex0315TextView);
mTextView.setText(String.valueOf(count));
}
}
}
在manifest里添加 <service
android:name="com.iruisi.service.Ex0315Service"
android:exported="false" >
</service>
这个服务是在另外一个包里
点击发送信息到服务器按钮,其实是 "停止服务"命名错误,点击后将停止。
android 入门-Service实时向Activity通过BroadcastReceiver传递数据的更多相关文章
- 在Activity之间如何传递数据,请尽可能说出你所知道的传递数据的方法,并详细描述其实现过程。
在Activity之间如何传递数据,请尽可能说出你所知道的传递数据的方法,并详细描述其实现过程. 答案:可以通过Intent对象.静态变量.剪切板和全局对象进行数据传递,具体的数据传递方法如下. 1. ...
- Android Service实时向Activity传递数据
演示一个案例,需求如下:在Service组件中创建一个线程,该线程用来生产数值,每隔1秒数值自动加1,然后把更新后的数值在界面上实时显示. 步骤如下:1.新建一个android项目工程,取名为demo ...
- Service实时向Activity传递数据案例
转自 http://www.cnblogs.com/linjiqin/p/3147764.html 演示一个案例,需求如下:在Service组件中创建一个线程,该线程用来生产数值,每隔1秒数值自动加1 ...
- android入门——Service
简单记录一下四大组件之一的Service的简单实用. 先是最简单的用法,服务的开关,onBind方法的使用 package com.example.wkp.service; import androi ...
- android 入门-Service
sdk 1.7 package com.example.hellowrold; import java.util.Random; import com.example.hellowrold.R.id; ...
- Android入门篇2-activity调用跟数据传递
一.activity调用 假设ActivityTest调用SecondActivity 1.显示调用 button1.setOnClickListener(new View.OnClickListen ...
- Android Activity和Fragment传递数据
1.Activity与Activity传递数据 UserLoginActivity.java: Intent welcomePage = new Intent(); Bundle dataBundle ...
- Android基础知识04—Activity活动之间传递数据
------活动之间传递数据------ 向下一个活动传递数据: Intent中提供了一系列的putExtra()方法,可以把数据暂存到Intent中,启动另一个活动的时候就可以取出来. 代码: (存 ...
- Android使用JNI实现Java与C之间传递数据(转)
介绍Java如何将数据传递给C和C回调Java的方法. java传递数据给C,在C代码中进行处理数据,处理完数据后返回给java.C的回调是Java传递数据给C,C需要用到Java中的某个方法,就需 ...
随机推荐
- OC block的简单使用
http://blog.csdn.net/itpeng523/article/details/23965147 一.先用Xcode创建一个空工程 学习block之前先用弄懂c语言的函数指针 看代码: ...
- 【GoLang】golang底层数据类型实现原理
虽然golang是用C实现的,并且被称为下一代的C语言,但是golang跟C的差别还是很大的.它定义了一套很丰富的数据类型及数据结构,这些类型和结构或者是直接映射为C的数据类型,或者是用C struc ...
- Android Studio (Gradle)编译错误
Error:Execution failed for task ':app:processDebugResources' .com.android.ide.common.process.Process ...
- word to word
Question: For each word, you can get a list of neighbor words by calling getWords(String), find all ...
- Wince常见操作
1.获取本地代码启动路径 //在代码启动路径下存在 Files 文件夹 Path.GetDirectoryName(Assembly.GetExecutingAssembly().GetName(). ...
- ios 使用xib时,在UIScrollView中添建内容view时,使用约束的注意
请参与一下链接:http://segmentfault.com/a/1190000002462033 简单的说下,就是必须写满一个view的6个约束,就是上下左右高宽,让scrollview 能够根据 ...
- 64位win系统上面tomcat6启动不了 window不能再本地计算机启动
64位的jdk装完之后,jre的bin目录下面没有client文件夹, 而tomcat6.0.20的默认配置启动在client文件夹下面. 所以打开tomcat6w,在java选项界面,取消Use d ...
- Windows下配置Java开发环境
学习Java第一步是配置本地开发环境,学习最基本的桌面开发,下面以win7为例配置Java开发环境,即:JDK+JRE+Eclipse,安装JDK的时候会默认安装JRE,根据提示安装就可以了. 首先去 ...
- Thread.Sleep in WinRT
Thread.Sleep in WinRT static void Sleep(int ms) { new System.Threading.ManualResetEvent(false).Wa ...
- SQL中关于字符串的处理
DECLARE @STR VARCHAR(MAX),@PRAM VARCHAR(20)SET @STR='中华人民共和国万岁'--字符串连接SET @STR=@STR+'an'+@STR --字符串拆 ...