片段问题中的findViewById

时间:2019-03-16 20:29:36

标签: android

我正在尝试在用户选择日期时更改textView。 行"TextView textView = getView().findViewById(R.id.dateDisplay);"使应用程序崩溃。我收到以下错误:

Error log

这是xml:textView在RelativeLayout内部,在RelativeLayout内部,在LinearLayout内部,在ScrollView内部,最后在ConstraintLayout内部。 TextView的ID为“ dateDisplay”

<android.support.constraint.ConstraintLayout 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"
tools:context=".ScheduledMessageActivity">


<ScrollView
    android:layout_width="0dp"
    android:layout_height="0dp"
    android:layout_marginStart="8dp"
    android:layout_marginLeft="8dp"
    android:layout_marginTop="8dp"
    android:layout_marginEnd="8dp"
    android:layout_marginRight="8dp"
    android:layout_marginBottom="8dp"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent">
    <LinearLayout
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="match_parent">
    <RelativeLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">
        <TextView
            android:id="@+id/dateDisplay"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Choose Date"
            android:layout_alignParentLeft="true"
            android:textSize="20sp" />

        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentRight="true"
            android:onClick="showDatePickerDialog"
            android:tag="datePicker"
            android:text="Pick Date" />
    </RelativeLayout>
    <RelativeLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">
        <TextView
            android:id="@+id/timeDisplay"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Choose Time"
            android:layout_alignParentLeft="true"
            android:textSize="20sp" />

        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentRight="true"
            android:onClick="showTimePickerDialog"
            android:tag="timePicker"
            android:text="Pick Time" />
    </RelativeLayout>
    </LinearLayout>


</ScrollView>

这是Fragment类中的方法:

public void onDateSet(DatePicker view, int year, int month, int day) {
    TextView textView = getView().findViewById(R.id.dateDisplay);
    textView.setText("Hello");

}

如何访问TextView?

2 个答案:

答案 0 :(得分:0)

为您的textview设置一个全局变量,并在片段的onCreateView()中找到其ID。在onDateSet()内部,只需将文本设置为textview。

答案 1 :(得分:0)

使用片段时,您应该在onCreateView方法内找到视图。

public class TestFragment extends Fragment {

    @Nullable
    @Override
    public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, Bundle savedInstanceState) {
        View view = getLayoutInflater().inflate(R.layout.myLayout,container,false);

        TextView textView view.findViewById(R.id.dateDisplay);

        return view
    }
}

如您所见,您应该使用为该片段放大的视图使用findViewById方法。

希望它能对您有所帮助。