android - Build in error in MainActivity.java file -
package com.example.buttontest; import android.os.bundle; import android.app.activity; import android.view.menu; public class mainactivity extends activity{ @override protected void oncreate(bundle savedinstancestate) { super.oncreate(savedinstancestate); setcontentview(r.layout.activity_main); } public void dosomething(view v) { log.d("krishna","button clicked"); } } when writing method public void dosomething(view v) { log.d("krishna","button clicked"); }
in above method 2 errors coming
- view cannot resolved type
- log cannot resolved.
please tell how resolve build error
do 1 click following keys
ctrl + shift + o
it automatically import usefull class or package ,
automatically remove use less import
or specific problem
you can follow @codemagic's answer; manually adding imports
Comments
Post a Comment