- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在尝试了解 Android 服务的工作原理。
所以我创建了一个带有 Activity 和服务的简单应用程序,代码如下:
MainActivity.xml:
<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:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context=".MainActivity">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Start Service"
android:id="@+id/buttonStart"
android:layout_marginTop="60dp"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_alignParentRight="true"
android:layout_alignParentEnd="true"
android:onClick="startButtonClickHandler"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Stop Service"
android:id="@+id/buttonStop"
android:layout_below="@+id/buttonStart"
android:layout_alignParentRight="true"
android:layout_alignParentEnd="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:enabled="false"
android:onClick="stopButtonClickHandler" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceLarge"
android:id="@+id/textView"
android:layout_centerVertical="true"
android:layout_centerHorizontal="true"
android:text="Counter is: 0" />
</RelativeLayout>
MainActivity.java:
package com.example.wellsaid.provaservice;
import android.app.Activity;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.IntentFilter;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.content.Intent;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;
import android.widget.Toast;
import org.w3c.dom.Text;
public class MainActivity extends Activity {
Button btn_stop = null;
Button btn_start = null;
/*---------------------------- CODICE NUOVO -----------------------------*/
private class MyReceiver extends BroadcastReceiver{
@Override
public void onReceive(Context arg0, Intent arg1) {
int datapassed = arg1.getIntExtra("count", 0);
TextView text = (TextView) findViewById(R.id.textView);
text.setText("Counter is: " + datapassed);
}
}
MyReceiver myreceiver = null;
/*---------------------------------------------------------------------*/
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
btn_stop = (Button) findViewById(R.id.buttonStop);
btn_start = (Button) findViewById(R.id.buttonStart);
if(ExampleService.isRunning()){
btn_stop.setEnabled(true);
btn_start.setText("Send request");
Intent intent = new Intent(this, ExampleService.class);
intent.putExtra("count",0);
startService(intent);
}
/*--------------------- CODICE NUOVO -------------------------------*/
myreceiver = new MyReceiver();
IntentFilter intentFilter = new IntentFilter();
intentFilter.addAction(ExampleService.RETURN_COUNTER);
registerReceiver(myreceiver, intentFilter);
/*------------------------------------------------------------------*/
}
public void startButtonClickHandler(View v){
if(!btn_stop.isEnabled()) {
btn_stop.setEnabled(true);
btn_start.setText("Send request");
}
Intent intent = new Intent(this, ExampleService.class);
intent.putExtra("count",0);
startService(intent);
}
public void stopButtonClickHandler(View v){
Intent intent = new Intent(this, ExampleService.class);
stopService(intent);
btn_start.setText("Start Service");
btn_stop.setEnabled(false);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
int id = item.getItemId();
return super.onOptionsItemSelected(item);
}
@Override
protected void onStop() {
// TODO Auto-generated method stub
unregisterReceiver(myreceiver);
super.onStop();
}
}
示例服务.java
package com.example.wellsaid.provaservice;
import android.app.Activity;
import android.app.AlarmManager;
import android.app.Notification;
import android.app.PendingIntent;
import android.app.Service;
import android.content.Context;
import android.content.Intent;
import android.os.IBinder;
import android.os.SystemClock;
import android.util.Log;
public class ExampleService extends Service {
/*--------------------- CODICE NUOVO-------------------------------*/
final static String RETURN_COUNTER = "RETURN_COUNTER";
/*----------------------------------------------------------------*/
@Override
public void onTaskRemoved(Intent rootIntent) {
super.onTaskRemoved(rootIntent);
Intent intent = new Intent(this, ExampleService.class);
intent.putExtra("count",thread.getCounter());
startService(intent);
}
@Override
public IBinder onBind(Intent intent) {
return null;
}
ExampleThread thread = null;
private static boolean running = false;
public static boolean isRunning() { return running; }
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
running = true;
if(thread == null) {
int counter = intent.getExtras().getInt("count");
thread = new ExampleThread(counter);
thread.start();
}
else{
/*-----------------------CODICE NUOVO ----------------------*/
Intent send = new Intent();
send.setAction(RETURN_COUNTER);
send.putExtra("count",thread.getCounter());
sendBroadcast(send);
/*----------------------------------------------------------*/
}
return startId;
}
@Override
public void onDestroy() {
running = false;
thread.kill();
super.onDestroy();
}
private class ExampleThread extends Thread {
boolean stopped;
int counter = 0;
public ExampleThread(int counter){
this.counter = counter;
}
public void start(){
stopped = false;
super.start();
}
public int getCounter(){ return counter; }
public void kill(){
stopped = true;
}
public void run(){
while(!stopped) {
try { Thread.sleep(2000); } catch (InterruptedException e) { e.printStackTrace(); }
counter++;
Log.i("Service", "Counter is: " + counter);
}
}
}
}
这就是我的 list :
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.wellsaid.provaservice" >
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<service android:name=".ExampleService" />
</application>
</manifest>
我尝试过:1)打开应用程序,使用开始按钮启动服务,然后使用另一个按钮停止它。一切OK 2)打开应用程序,启动服务并关闭应用程序。一切正常(服务仍在运行) 3) 打开应用程序,启动服务,重新打开应用程序并获取计数器值。一切OK 4)打开应用程序,启动服务,关闭应用程序,重新打开应用程序并停止服务。一切OK(关闭后还要重新启动服务)当我打开、启动服务、关闭应用程序、重新打开以检查计数器编号,然后再次关闭应用程序时,问题就会出现,一段时间后,服务停止,logcat 中没有消息:(在我的 Android 设备上的应用程序管理中,我可以看到我的应用程序处于重新启动状态,并且在输入很长一段时间后,它会重新启动,然后再次停止,不断地......我已经在三星 Galaxy Express Stock (Android 4.1.2) 和三星 Galaxy Tab 2 10.1 上进行了测试,并安装了氰基mod 10.1.3 (Android 4.2.2)
最佳答案
您读过https://developer.android.com/reference/android/app/Service.html吗? ?
请注意以下事项:
For started services, there are two additional major modes of operation they can decide to run in, depending on the value they return from onStartCommand(): START_STICKY is used for services that are explicitly started and stopped as needed, while START_NOT_STICKY or START_REDELIVER_INTENT are used for services that should only remain running while processing any commands sent to them.
来自 START_STICKY
文档:
Constant to return from onStartCommand(Intent, int, int): if this service's process is killed while it is started (after returning from onStartCommand(Intent, int, int)), then leave it in the started state but don't retain this delivered intent. Later the system will try to re-create the service. Because it is in the started state, it will guarantee to call onStartCommand(Intent, int, int) after creating the new service instance; if there are not any pending start commands to be delivered to the service, it will be called with a null intent object, so you must take care to check for this.
This mode makes sense for things that will be explicitly started and stopped to run for arbitrary periods of time, such as a service performing background music playback.
关于java - 当应用程序重新打开和关闭时 Android 服务停止,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24713247/
SQLite、Content provider 和 Shared Preference 之间的所有已知区别。 但我想知道什么时候需要根据情况使用 SQLite 或 Content Provider 或
警告:我正在使用一个我无法完全控制的后端,所以我正在努力解决 Backbone 中的一些注意事项,这些注意事项可能在其他地方更好地解决......不幸的是,我别无选择,只能在这里处理它们! 所以,我的
我一整天都在挣扎。我的预输入搜索表达式与远程 json 数据完美配合。但是当我尝试使用相同的 json 数据作为预取数据时,建议为空。点击第一个标志后,我收到预定义消息“无法找到任何内容...”,结果
我正在制作一个模拟 NHL 选秀彩票的程序,其中屏幕右侧应该有一个 JTextField,并且在左侧绘制弹跳的选秀球。我创建了一个名为 Ball 的类,它实现了 Runnable,并在我的主 Draf
这个问题已经有答案了: How can I calculate a time span in Java and format the output? (18 个回答) 已关闭 9 年前。 这是我的代码
我有一个 ASP.NET Web API 应用程序在我的本地 IIS 实例上运行。 Web 应用程序配置有 CORS。我调用的 Web API 方法类似于: [POST("/API/{foo}/{ba
我将用户输入的时间和日期作为: DatePicker dp = (DatePicker) findViewById(R.id.datePicker); TimePicker tp = (TimePic
放宽“邻居”的标准是否足够,或者是否有其他标准行动可以采取? 最佳答案 如果所有相邻解决方案都是 Tabu,则听起来您的 Tabu 列表的大小太长或您的释放策略太严格。一个好的 Tabu 列表长度是
我正在阅读来自 cppreference 的代码示例: #include #include #include #include template void print_queue(T& q)
我快疯了,我试图理解工具提示的行为,但没有成功。 1. 第一个问题是当我尝试通过插件(按钮 1)在点击事件中使用它时 -> 如果您转到 Fiddle,您会在“内容”内看到该函数' 每次点击都会调用该属
我在功能组件中有以下代码: const [ folder, setFolder ] = useState([]); const folderData = useContext(FolderContex
我在使用预签名网址和 AFNetworking 3.0 从 S3 获取图像时遇到问题。我可以使用 NSMutableURLRequest 和 NSURLSession 获取图像,但是当我使用 AFHT
我正在使用 Oracle ojdbc 12 和 Java 8 处理 Oracle UCP 管理器的问题。当 UCP 池启动失败时,我希望关闭它创建的连接。 当池初始化期间遇到 ORA-02391:超过
关闭。此题需要details or clarity 。目前不接受答案。 想要改进这个问题吗?通过 editing this post 添加详细信息并澄清问题. 已关闭 9 年前。 Improve
引用这个plunker: https://plnkr.co/edit/GWsbdDWVvBYNMqyxzlLY?p=preview 我在 styles.css 文件和 src/app.ts 文件中指定
为什么我的条形这么细?我尝试将宽度设置为 1,它们变得非常厚。我不知道还能尝试什么。默认厚度为 0.8,这是应该的样子吗? import matplotlib.pyplot as plt import
当我编写时,查询按预期执行: SELECT id, day2.count - day1.count AS diff FROM day1 NATURAL JOIN day2; 但我真正想要的是右连接。当
我有以下时间数据: 0 08/01/16 13:07:46,335437 1 18/02/16 08:40:40,565575 2 14/01/16 22:2
一些背景知识 -我的 NodeJS 服务器在端口 3001 上运行,我的 React 应用程序在端口 3000 上运行。我在 React 应用程序 package.json 中设置了一个代理来代理对端
我面临着一个愚蠢的问题。我试图在我的 Angular 应用程序中延迟加载我的图像,我已经尝试过这个2: 但是他们都设置了 src attr 而不是 data-src,我在这里遗漏了什么吗?保留 d
我是一名优秀的程序员,十分优秀!