0

前两个日志显示正常,但最后一个不显示。即使最后一个日志的第二个参数有问题,我仍然很困惑为什么日志不只是显示错误或其他东西。任何帮助表示赞赏。

@Override
public void onStart() {
    super.onStart();
    TextView country = (TextView) findViewById(R.id.country);
    Log.d("t1", "t1");
    Log.d("t2", country.toString());
    Log.d("t3", country.getText().toString());
}

这是日志输出:

02-07 05:10:16.877 23305-23305/---bundle id--- D/t1: t1
02-07 05:10:16.877 23305-23305/---bundle id--- D/t2: android.support.v7.widget.AppCompatTextView{381dd943 V.ED..C. ......I. 0,0-0,0 #7f0e0089 app:id/country}
4

2 回答 2

1

据我所知,如果对象的getText()方法TextView返回一个空字符串,记录器将不会为它输出一个条目。您可以尝试连接一些文本来描述输出中的预期内容。例如:

Log.d("t3", "Country TextView Value: " + country.getText().toString());
于 2016-02-07T13:27:59.057 回答
0

这种情况只有在 null 字符串值返回的情况下才有可能TextView。您需要添加Log如下内容:

Log.d("t3", "Country : " + country.getText().toString());
于 2016-02-07T13:54:45.050 回答