Using Basic Activity (Java) - Android Studio
In this tutorial we will learn how to use/create/add Basic Activity . We will use Java Language. Step 1: Create a New Project select "Basic Activity" OR Open Project & add Basic Activity File>New>Activity>Basic Activity Step 2: Done, your code will look like activity_main.xml <?xml version="1.0" encoding="utf-8"?> <android.support.design.widget.CoordinatorLayout xmlns:android= "http://schemas.android.com/apk/res/android" xmlns:app= "http://schemas.android.com/apk/res-auto" xmlns:tools= "http://schemas.android.com/tools" android:layout_width= "match_parent" android:layout_height= "match_parent" tools:context= ".MainActivity" > <android.support.design.widget.AppBarLayout android:layout_width= "match_parent" android:layout_height= "wrap_content" android:theme= "@style/AppThem...