Невозможно "findViewById" graphview - PullRequest
0 голосов
/ 12 октября 2018

Я пытаюсь создать график внутри фрагмента в моем приложении, и у меня возникает проблема, когда я редактирую график, происходит сбой всего приложения.

После некоторого исследования я понял, что graphView не может получить «график» из XML-документа

public class GraphFragment extends Fragment {
@Override                                               //TODO: Make do something
 public View onCreateView(@NonNull LayoutInflater inflater, ViewGroup container,
                         Bundle savedInstanceState) {

     GraphView graph =  getActivity().findViewById(R.id.graph); 
    LineGraphSeries<DataPoint> series = new LineGraphSeries<>(new DataPoint[] {
            new DataPoint(0, 1),
            new DataPoint(1, 5),
            new DataPoint(2, 3)
    });
    graph.addSeries(series);  //it crashes when the graph is edited
    return inflater.inflate(R.layout.graphview, container, false);
}}`

Код ошибки отображается как

java.lang.NullPointerException: попытка вызвать виртуальный метод «void com.jjoe64.graphview.GraphView.addSeries (com.jjoe64.graphview.series.Series)» для ссылки на пустой объект

XML для graphviewвыглядит следующим образом:

' <?xml version="1.0" encoding="utf-8"?>
    <FrameLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <com.jjoe64.graphview.GraphView
        android:id="@+id/graph"
        android:layout_width="match_parent"
        android:layout_height="200dip"
        android:layout_marginBottom="9dp"
        android:layout_marginEnd="8dp"
        android:layout_marginStart="8dp"
        android:layout_marginTop="72dp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintHorizontal_bias="0.0"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintVertical_bias="0.01" />
        </FrameLayout>'

Кадр таков, что в другом фрагменте есть фрагмент графика.Может кто-нибудь объяснить мне, почему функция findViewById () не имеет привилегии для получения R.Id.graph

1 Ответ

0 голосов
/ 12 октября 2018

Вы делаете findViewById() до того, как раздуте компоновку, что означает, что R.id.graph на данный момент не существует.Немного измените свой код:

@Override 
public View onCreateView(@NonNull LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
    View fragView = inflater.inflate(R.layout.graphview, container, false); //inflate up here and assign to variable

    GraphView graph = fragView.findViewById(R.id.graph); //change getActivity() to fragView
    LineGraphSeries<DataPoint> series = new LineGraphSeries<>(new DataPoint[] {
            new DataPoint(0, 1),
            new DataPoint(1, 5),
            new DataPoint(2, 3)
    });
    graph.addSeries(series);
    return fragView; //return fragView
}

В качестве альтернативы, переместите свой код в onViewCreated():

@Override
public View onCreateView(@NonNull LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
    return inflater.inflate(R.layout.graphview, container, false);
}

@Override
public void onViewCreated(View view, Bundle savedInstanceState) {
    GraphView graph = view.findViewById(R.id.graph); 
    LineGraphSeries<DataPoint> series = new LineGraphSeries<>(new DataPoint[] {
            new DataPoint(0, 1),
            new DataPoint(1, 5),
            new DataPoint(2, 3)
     });
     graph.addSeries(series); 
}

Только примечание: не используйте getActivity().findViewById() во фрагменте.Если этот фрагмент не присоединен к действию, это вызовет другие проблемы.Используйте view в onViewCreated() или getView() в другом месте.

...