我无法弄清楚输出 int logcat 的正确方法,并且api 文档对我来说没有意义。
我觉得应该这样做:
package com.example.conflip;
import java.util.Random;
import android.os.Bundle;
import android.app.Activity;
import android.util.Log;
import android.view.Menu;
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
flip();
}
public int flip() {
Random randomNumber = new Random();
int outcome = randomNumber.nextInt(2);
Log.d(outcome);
return outcome;
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
}
但是我只得到错误The method d(String, String) in the type Log is not applicable for the arguments (int)
我需要将 int 转换为字符串吗?如果是这样,怎么办?
更新:
尽管以下所有解决方案都有效,但在我在 DDMS 中选择我的硬件设备之前,LogCat 不会显示输出。