当用户单击按钮时,我正在尝试启动前台服务和通知。此按钮称为“ startBtn”。它旨在显示用户采取的步骤数。
我有3个文件,StepsFragment.java,fragment_steps.xml和StepsService.java。
当用户单击按钮时,我在Logcat中遇到此错误:
java.lang.IllegalStateException: Could not find method startService(View) in a parent or ancestor Context for android:onClick attribute defined on view class android.support.v7.widget.AppCompatButton with id 'startBtn'
我已经尝试过以下关于StackOverflow的解决方案:
Could not find method in a parent or ancestor Context for android:onClick attribute
这是我在StepsFragment.java中的代码:
package sg.edu.singaporetech.teamproject;
import android.content.Context;
import android.content.Intent;
import android.hardware.Sensor;
import android.hardware.SensorEvent;
import android.hardware.SensorEventListener;
import android.hardware.SensorManager;
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.ProgressBar;
import android.widget.TextView;
import android.widget.Toast;
public class StepsFragment extends Fragment implements SensorEventListener, View.OnClickListener {
Button updateBtn;
ProgressBar progressBar;
TextView tv_steps;
TextView levelDisplay;
SensorManager sensorManager;
Sensor sensor;
boolean running = false;
@Nullable
@Override
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.fragment_steps, container, false);
super.onCreate ( savedInstanceState );
updateBtn = view.findViewById(R.id.updateBtn);
progressBar = view.findViewById(R.id.progress_bar);
tv_steps = (TextView) view.findViewById(R.id.tv_steps);
levelDisplay = (TextView) view.findViewById(R.id.levelDisplay);
sensorManager = (SensorManager) getActivity().getSystemService ( Context.SENSOR_SERVICE);
updateBtn.setOnClickListener(this);
return view;
}
public void startService(View view) {
String input = tv_steps.getText().toString();
Intent serviceIntent = new Intent(getActivity(),StepsService.class);
serviceIntent.putExtra("inputExtra",input);
getActivity().startService(serviceIntent);
}
}
这是fragment_steps.xml中的按钮代码:
<android.support.v7.widget.AppCompatButton
android:id="@+id/startBtn"
style="?android:attr/borderlessButtonStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="30dp"
android:background="@drawable/btn_orange"
android:text="@string/start_steps"
android:textColor="@color/white"
android:textSize="15dp"
android:onClick="startService"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toBottomOf="@+id/updateBtn" />
最后,这是StepsService.java中的代码
package sg.edu.singaporetech.teamproject;
import android.app.Notification;
import android.app.PendingIntent;
import android.app.Service;
import android.content.Intent;
import android.os.IBinder;
import android.support.annotation.Nullable;
import android.support.v4.app.NotificationCompat;
import static sg.edu.singaporetech.teamproject.StepsNotification.CHANNEL_ID;
public class StepsService extends Service {
@Override
public void onCreate() {
super.onCreate();
}
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
String input = intent.getStringExtra("inputExtra");
Intent notificationIntent = new Intent(this,StepsFragment.class);
PendingIntent pendingIntent = PendingIntent.getActivity(this,0,notificationIntent,0);
Notification notification = new NotificationCompat.Builder(this, CHANNEL_ID)
.setContentTitle("Steps Tracker")
.setContentText("Steps tracked")
.setSmallIcon(R.drawable.exersize)
.setContentIntent(pendingIntent)
.build();
startForeground(1,notification);
return START_NOT_STICKY;
}
@Override
public void onDestroy() {
super.onDestroy();
}
@Nullable
@Override
public IBinder onBind(Intent intent) {
return null;
}
}
答案 0 :(得分:1)
android:onClick="startService"
将不会分段调用。您应改用OnClickListener
处理此类事件。
另一种方法是在活动中声明startService
函数,然后从活动中调用fragment方法。