我试图让 TextView 根据条件显示字符串。但是,当我尝试实现它时,它会导致应用程序停止工作。这是相关的代码/xml:
// class declaration, etc.
TextView textString;
// other code
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_name);
...
textString = (TextView) findViewById(R.id.textId);
...
@Override
public void onClick(View v) {
switch (v.getId()) {
case R.id.button_id:
...
if(getNum(0) == 10) {
textString = (TextView) findViewById(R.id.textId);
textString.setText("String 1");
}
if(getNum(1) == 10) {
textString = (TextView) findViewById(R.id.textId);
textString.setText("String 2");
}
// etc.
getNum(int index) 是我编写的一种方法,它从给定索引的数组中返回一个整数。
文本视图的 XML 代码:
<TextView
android:id="@+id/textId"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/other_id"
android:layout_centerHorizontal="true"
android:layout_marginTop="25dp" />
为什么会崩溃?
编辑* 这是 LogCat:
我不确定你需要多少。