- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我一直在学习“Pro Android 2”这本书。我正在处理一个由两个类组成的服务示例:BackgroundService.java 和 MainActivity.java。 MainActivity 声称(错误地?)它启动服务,如下面的 Log.d 调用输出到 logcat 所示:
public class MainActivity extends Activity {
private static final String TAG = "MainActivity";
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
Log.d(TAG, "starting service");
Button bindBtn = (Button)findViewById(R.id.bindBtn);
bindBtn.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View arg0) {
Intent backgroundService = new Intent(MainActivity.this, com.marie.mainactivity.BackgroundService.class);
startService(backgroundService);
}
});
Button unbindBtn = (Button)findViewById(R.id.unbindBtn);
unbindBtn.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View arg0) {
stopService(new Intent(MainActivity.this, BackgroundService.class));
}
});
}
}
令我困惑的是,UI 提供了两个按钮:绑定(bind)和取消绑定(bind),如上所示。但是根据documentation如果如下所示的 onBind() 返回 null,表示您不想允许绑定(bind)。但是如上所示(绑定(bind)按钮)的 onClick() 方法 bindBtn.setOnClickListener(new OnClickListener() calls startService(backgroundService) 给出了这个错误:“无法启动服务 Intent { cmp=com.marie.mainactivity/.BackgroundService }: 没有找到"
public class BackgroundService extends Service {
private NotificationManager notificationMgr;
@Override
public void onCreate() {
super.onCreate();
notificationMgr = NotificationManager)getSystemService(NOTIFICATION_SERVICE);
displayNotificationMessage("starting Background Service");
Thread thr = new Thread(null, new ServiceWorker(), "BackgroundService");
thr.start();
}
class ServiceWorker implements Runnable
{
public void run() {
// do background processing here...
//stop the service when done...
//BackgroundService.this.stopSelf();
}
}
@Override
public void onDestroy()
{
displayNotificationMessage("stopping Background Service");
super.onDestroy();
}
@Override
public void onStart(Intent intent, int startId) {
super.onStart(intent, startId);
}
@Override
public IBinder onBind(Intent intent) {
return null;
}
private void displayNotificationMessage(String message)
{
Notification notification = new Notification(R.drawable.note, message, System.currentTimeMillis());
PendingIntent contentIntent = PendingIntent.getActivity(this, 0, new Intent(this, MainActivity.class), 0);
notification.setLatestEventInfo(this, "Background Service", message, contentIntent);
notificationMgr.notify(R.id.app_notification_id, notification);
}
}
我不明白这个例子的意义。如果 onBind() 返回 null 有一个绑定(bind)按钮 (bindBtn) 有什么意义?我认为重点是展示如何启动 BackgroundService。但它似乎不起作用,除非我遗漏了什么。
我应该添加我已经添加到我的 AndroidManifest.xml 中:
<service android:name=".BackgroundService"></service>
如下:
<application android:icon="@drawable/icon" android:label="@string/app_name">
<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>
<service android:name=".BackgroundService"></service>
</activity>
</application>
最佳答案
从 Activity 中删除服务。它与应用程序中的 Activity 处于同一级别。例如:
<application android:icon="@drawable/icon" android:label="@string/app_name">
<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=".BackgroundService"></service>
</application>
关于android - 无法启动服务 Intent { cmp=com.marie.mainactivity/.BackgroundService } : not found,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6313793/
两种符号-cmp +chroma和 -cmp chroma适合我。它们之间有什么区别吗? 我目前的猜测是否定的,因为 all -cmp arguments can be presented in di
我正在实现一个游戏。我有一个状态树和一个基于 set<> 的优先级队列,用于根据成本对状态进行排序。为此,我将 { bool operator()(const State* lhs, const
和有什么区别 extern int (*func)(void); 和 extern int *func(void); 谢谢 最佳答案 extern int (*func)(void); 声明 func
我必须用汇编写一个函数来完成下面的c代码。 int main(){ int hist[26]={0}; int i; charHistogram("This is a string", hist);
我用我想要循环的次数填充ecx,dec重新调整ecx并如果不为零则跳转 到返回:。 现在的问题是,为什么不: cmp ecx, 0jnz back 之前必需的。jnz 如何自动知道跳转时要比较哪个寄存
我的 CMPedometer 没有运行。 运行之前和之后的代码,但它本身不起作用。我没有收到任何警告或异常。我正在真实的 5s 上进行测试。 我尝试过 querydata 和 startpedomet
我使用下面的代码向端点发送 CMP 证书请求: public static void main(String[] args) { try { System.out.pr
我正在使用 gdb 来调试我的代码,仍然是初学者 我想知道如何获取实际地址 例如,给出以下汇编代码: cmp %eax, 0x4(%rbp,%rbx,4) 我想知道与 %eax 进行比较的内容,换句话
所以我尝试练习在 python 中将函数和关键字作为参数传递,但我得到了一个奇怪的结果。我有以下代码: def myeval(f, *args, **kwargs): return f(*ar
我在 x86 处理器中使用 cmp 命令并且工作正常(二进制文件是使用 gcc 生成的)但是在arm cortex a9中使用它时,它没有给出正确的输出(二进制文件是使用交叉gcc生成的) 使用 cm
我收到以下错误: Assembler messages: Error: operand type mismatch for `cmp' 我的代码中唯一的 cmp 是: "cmpl %eax, $15\
我对组装很陌生,现在我想了解如何cmp作品。这是 wiki 中写的内容: cmp arg2, arg1 Performs a comparison operation between arg1 and
我在比较单个单词(2 个字节)时遇到了 CMP 指令的问题。 以下是我的main.asm: [org 0x7c00] mov bx, HELLO_MSG call print_string mov b
我想知道为什么 cmp 指令需要特定的参数顺序条件。 例如,我已经尝试过这两种方法。 cmpl %eax, $'A' cmpl $'A', %eax 第一行返回错误,表示操作数类型不匹配。第二线效果很
问题 以下两条 x86 指令之间有什么(重要的)区别? 39 /r CMP r/m32,r32 Compare r32 with r/m32 3B /r CMP r32,r/m32
我想知道为什么 cmp 指令需要特定的参数顺序条件。 例如,我已经尝试过这两种方法。 cmpl %eax, $'A' cmpl $'A', %eax 第一行返回错误,表示操作数类型不匹配。第二线效果很
所以我正在阅读一些 assembly source code出于学习目的,遇到了一些非常奇怪的事情(或者我可能只是一个新手): .ver: mov al, [redoxfs.header +
cmp file1 file2 当文件相同时不执行任何操作。那么如何在 shell 脚本中打印出相同的文件呢? 最佳答案 如果文件相同,cpm 的退出状态为零,否则为非零。因此,您可以使用类似 cmp
我希望获得 Bash 脚本循环方面的帮助,该循环将显示两个二进制文件之间的所有差异,仅使用 cmp file1 file2 它只显示了我想使用 cmp 的第一个更改,因为它给出了偏移量和每个更改所在的
有人能告诉我 cmp 命令输出中的“行”号代表什么吗?我问这个是因为,首先,我无法在任何地方找到它的解释。其次,我得到了比较一组文件的结果,其中“char”输出相同(如预期)但“line”输出差异很大
我是一名优秀的程序员,十分优秀!