是的,我知道它已被问到但我的总是空的 我尝试过各种方式 请帮助, 错误按摩: java.lang.NullPointerException:尝试在空对象引用上调用虚方法'void android.widget.TextView.setText(java.lang.CharSequence)'
public class InfoFragment extends Fragment {
private TextView tvInfo;
public InfoFragment(){};
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
View rootView = inflater.inflate(R.layout.main_fragment, container, false);
tvInfo = rootView.findViewById(R.id.tv_info);
tvInfo.setText("hello");
return rootView;
}
}
的xml:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TextView
android:id="@+id/tv_info"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
</RelativeLayout>
答案 0 :(得分:0)
您展示的代码是正确的。它应该100%正确。 但是,也许你正在膨胀不同的布局,这就是TextView为空的原因