android - Eclipse ADT ActionBarActivity? -
i'm brand new eclipse , android , i'm trying follow tutorials every time create new project has bunch of stuff tutorials don't have. instead of extending activity extends actionbaractivity , starts methods don't think need. there way create new project without action bar stuff?
if don't want actionbar activity, replace class code.
import android.app.activity; import android.os.bundle; public class mainactivity extends activity { @override protected void oncreate(bundle savedinstancestate) { super.oncreate(savedinstancestate); setcontentview(r.layout.activity_main); } }
Comments
Post a Comment