Posts

Creating Sign In Page With phpMyAdmin (online)

Image
Creating Sign In Page Now we will be creating sign in page using phpMyAdmin and web hosting (000webhost).  They provide hosting absolutely free, there is no catch. You get 1500 MB of disk space and 100 GB bandwidth. They also have cPanel control panel which is amazing and easy to use website builder. Moreover, there is no any kind of advertising on your pages. You can register here:  000webhost Java Class: 1. LoginActivity.java: import android.app.AlertDialog; import android.content.Intent; import android.os.Bundle; import android.support.v7.app.AppCompatActivity; import android.view.View; import android.widget.Button; import android.widget.EditText; import com.android.volley.RequestQueue; import com.android.volley.Response; import com.android.volley.toolbox.Volley; import org.json.JSONException; import org.json.JSONObject; public class LoginActivity extends AppCompatActivity {     @Override     protected void onCreate(Bundle saved...

Starting Android Programming

Image
Step 1: Download android studio and basic software To start you first step to creating android application, you need android studio which comes direct from google itself. There are other software that can create android application such as Eclipce and Basic4Android. But most suitable and user friendly is android studio. Basic software you need: 1.  Android studio 2.  Notepad ++ 3.  Noxplayer  (android emulator) faster than using android ADB 4. Photoshop or other photo editor  Install all the application that you needed  Step 2 : Creating your new project Open your android studio after you installing all software This what you see after you open android studio. Click : File > New > New Project Application name you can be change whatever you want no name it. For example "my first application" and click next Now in SDK setting. For now we just using default setting and click next. This all the activity or main page of your...