Reputation: 43
in onCreate function, i have command log, but android studio 4.0 had not Android Monitor window. How to i see text in Log.d() command.
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Log.d("function:","onCreate in main acitivity");
}
Upvotes: 0
Views: 38
Reputation: 4123
It is not about Android studio 4.0. just google it before asking.
however, you can see all logs in the Logcat.
Upvotes: 1