Я пытаюсь запустить службу переднего плана и уведомление, когда пользователь нажимает кнопку.Эта кнопка называется «startBtn».Он предназначен для отображения количества шагов, которые делает пользователь.
У меня есть 3 файла: StepsFragment.java, frag_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:
Как устранить ошибку: Не удалось найти метод onClick (View) в родительском или родительском контексте для android: onClick
Не удалось найти метод в контексте родителя или предка для android: атрибут onClick
Это мой код в 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);
}
}
Этокод кнопки в фрагменте: x 1021 *
<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;
}
}