我正在尝试在Android应用上启动一个简单的后台服务 但似乎在我的" startBckgrdSrvice(View v)" ," getActivity()"是 没有定义。
我已经尝试过使用Activity.this或FrontPage.this,但这两个类都没有 有我想要的。 有人能给我一些线索吗?
我正在使用android-studio IDE。
package com.example.leeloo.chut;
import android.app.Activity;
import android.app.PendingIntent;
import android.content.Intent;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.widget.CheckBox;
import android.widget.TextView;
public class FrontPage extends Activity {
public static final String activate_msg = "Activate";
public static final String deactivate_msg = "Deactivate";
private PendCall mbckgrdService;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_front_page);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.front_page, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
public void startBckgrdSrvice(View v){
CheckBox chkBox = (CheckBox) findViewById(R.id.activateChkBox);
if(chkBox.getText().toString().compareTo(activate_msg)==0)
chkBox.setText(FrontPage.deactivate_msg);
else {
chkBox.setText(FrontPage.activate_msg);
mbckgrdService = new Intent()
}
}
}
答案 0 :(得分:0)
假设PendCall extends Service
,你可以试试这个:
Intent intent = new Intent(this, PendCall.class);
startService(intent);
请注意,由于startBckgrdSrvice()
是扩展Activity的类中的方法,this
是对Activity
对象的引用,因此您不需要调用{{ 1}}(仅适用于getActivity()
s)。您也可以直接致电Fragment
,因为它是来自startService()
的方法。
我强烈建议您了解一些Java基础知识,尤其是继承。