「Android ログの出力」の版間の差分
ナビゲーションに移動
検索に移動
(同じ利用者による、間の1版が非表示) | |||
1行目: | 1行目: | ||
− | ==Android ログの出力== | + | ==[[Android ログの出力]]== |
− | + | [[Android]] | [[Java]] | [[Eclipse]] | | |
− | ===Eclipse へログの出力=== | + | ===[[Eclipse]] へログの出力=== |
====LogCatを開く==== | ====LogCatを開く==== | ||
*Window - Show View - LogCat | *Window - Show View - LogCat | ||
11行目: | 11行目: | ||
*http://developer.android.com/reference/android/util/Log.html | *http://developer.android.com/reference/android/util/Log.html | ||
− | import android.app. | + | import android.app.Acti[[vi]]ty; |
import android.os.Bundle; | import android.os.Bundle; | ||
import android.util.Log; | import android.util.Log; | ||
− | public class | + | public class SensorListActi[[vi]]ty extends Acti[[vi]]ty { |
private final String LOG_TAG = "SensorList"; | private final String LOG_TAG = "SensorList"; | ||
− | /** Called when the | + | /** Called when the acti[[vi]]ty is first created. */ |
@Override | @Override | ||
public void onCreate(Bundle savedInstanceState) { | public void onCreate(Bundle savedInstanceState) { | ||
Log.i(LOG_TAG, "logtest"); | Log.i(LOG_TAG, "logtest"); | ||
super.onCreate(savedInstanceState); | super.onCreate(savedInstanceState); | ||
− | setContentView(R.layout.main); | + | setContentView([[R]].layout.main); |
} | } | ||
} | } | ||
====ログが出力されたところ==== | ====ログが出力されたところ==== | ||
[[File:0119_android_log02.jpg]] | [[File:0119_android_log02.jpg]] |
2020年2月16日 (日) 04:21時点における最新版
Android ログの出力
Eclipse へログの出力
LogCatを開く
- Window - Show View - LogCat
コード例
- android.util.Log を使う
- http://developer.android.com/reference/android/util/Log.html
import android.app.Activity; import android.os.Bundle; import android.util.Log; public class SensorListActivity extends Activity { private final String LOG_TAG = "SensorList"; /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { Log.i(LOG_TAG, "logtest"); super.onCreate(savedInstanceState); setContentView(R.layout.main); } }
ログが出力されたところ
© 2006 矢木浩人