Skip to main content

Using Code Completion

Code completion is an invaluable tool that shows you contextual options for completing the piece of code that you are trying to write. For example, in the editor tab for the MainActivity.js file, locate the line that reads.

         setContentView(R.layout.activity_main);

Place your cursor after this line and press the Enter Key . On the new line , type the letter R , and then type a period, as shown here:

         R.

Android Studio Code Completion should display a list of values that you could use to try to complete the code statement. Figure shows what this list might look like . this is important if you are not entirely sure of the spelling of a method call or how to identify the different method signatures.


NOTE if the code completion window does not open , press Ctrl + Space to force it to open. This is the same key combination used in some other IDEs for their versions of the code completion.

You can also use code completion to insert code stubs into your classes . If you are inheriting from a class that has methods you must override , code completion notifies you that there are methods that need to be overridden. With a click , it inserts the stubs of those methods into your application.

Finally , the ability to import packages is one of the Android Studio features and its code completion implementation that you will use most often while navigating the examples in this blog.

For example , if you were to attempt to create a variable of a type that belongs to a package that you have not imported , Android Studio recognizes this and underlines the type with a red squiggle . Set the cursor to that line and press Alt+Enter to automatically import the package into a using statement at the top of your code file. 

Comments

Popular posts from this blog

Hiding the Activity Title

You can also hide the title of an activity if desired ( Such as when you just want to display a status update to the user). To do so , use the requestWindowFeature() method and pass it the window .FEATURE_NO_TITLE constant, like This : import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.Window; public class MainActivity extends AppCompatActivity{            @Override            protected void onCreate ( Bundle savedInstanceState )            {                         super.onCreate (savedInstanceState );                         setContentView (R.layout.activity_main);                         requestWindowFeature(Window.FEATURE_NO_TITLE);             } } Now you need change the theme in the AndoirdManifest.xml to a theme that has no title bar. Be sure to change all instances of "com.android" to whatever.package name your project is using. package com.android.activity101; <?xml version="1.0" encoding=

OBTAINING THE REQUIRED TOOLS

Now that you know what Android is and what its feature set contains, you are probably anxious to get your hands dirty and start writing some application! Before you write your first app,however , you need to download the required tools. For Android development , you can use a Mac,Windows PC,or a Linux machine. You can freely download all the necessary tools. Most of the examples provided in the blog are written to work on Android Studio. For this Blog, i am using a Windows 10 computer to demonstrate all the code samples.If you are using a Mac or Linux computer , the screenshots look similar. Some minor differences might be present,but you should be able to follow along without problems. Let the fun begin ! NOTE:- The Android Studio makes use of the Java SE Development Kit (JDK) . If Your computer does not have JDK installed, yous should by Downloading it from https://www.oracle.com/technetwork/java/javase/downloads/jdk13-downloads-5672538.html and installing it prior to movin

Showing a Progress Dialog

     One normal UI highlight in an Android gadget is the "Please wait" exchange that you ordinarily observe when an application is playing out a long-running errand. For instance, the application may be signing in to a worker before the client is permitted to utilize it, or it very well may be doing a computation prior to showing the outcome to the client. In such cases, it is useful to show a discourse, known as a progress dialog , with the goal that the client is kept on top of it.   Displaying a Progress Dialog (Please Wait):-   1.Manifest File <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" package="com.jfdimarzio.activity101">      <application          android:allowBackup="true"           android:icon="@mipmap/ic_launcher"           android:label="@string/app_name&qu