在我的活动中,我有多行EditText,以便用户可以存储一些注释:
<EditText
android:id="@+id/notesTV"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="30dp"
android:layout_marginLeft="30dp"
android:layout_marginTop="30dp"
android:layout_marginEnd="30dp"
android:layout_marginRight="30dp"
android:background="@android:color/transparent"
android:hint="Enter notes here..."
android:inputType="textMultiLine"
android:scrollbars="vertical"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">>
</EditText>
在代码中,我为此EditText创建了一个出口。然后,我进入数据库以获取用户以前可能已经做过的所有注释,并将这些注释设置为EditText的文本。
package org1hnvc.httpshbssup.hbsnewventurecompetition;
import ...
public class Notes extends AppCompatActivity {
private EditText notesTV;
@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setTitle("Notes");
notesTV = findViewById(R.id.notesTV);
fetchNotes();
}
private void fetchNotes(){
FirebaseManager.manager.fetchNotes(companyID, new FirebaseManager.NotesCallback() {
@Override
public void onSuccess(String notes) {
notesTV.setText(notes);
}
@Override
public void onError(String error) {
Toast.makeText(getApplicationContext(), "An error occurred while fetching your notes",
Toast.LENGTH_LONG).show();
}
});
}
}
当我这样做时,应用程序发疯了。它退出活动,并转到上一个活动(我从中确定)。没有引发错误,但是显然代码没有正确执行。起初,我认为这可能与我的fetchNotes方法有关。但是,当我删除此方法并仅在onCreate方法中将EditText的文本设置为“ test”时,发生了同样的事情。有人请帮忙。
答案 0 :(得分:1)
您的活动因此行而崩溃:
notesTV = findViewById(R.id.notesTV);
您要的是让Activity按ID“查找”视图,除非您从未告诉过它要充气的布局。
进行如下更改:
@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.the_layout_file_of_your_activity);
setTitle("Notes");
notesTV = findViewById(R.id.notesTV);
fetchNotes();
}
尤其是setContentView()
部分。
通过这种方式,活动将使布局膨胀,并使其可以找到您的notesTV
EditText。