Android loading screen
Start Activity class package com.gsm.androidproject; import android.app.Activity; import android.content.Intent; import android.database.sqlite.SQLiteDatabase; import android.os.AsyncTask; import android.os.Bundle; import android.widget.ProgressBar; import android.widget.TextView; public class StartActivity extends Activity { //private Thread thread; private TextView dbCreatedInfo; private TextView loadingText; private ProgressBar bar ; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_start_layout); /* dbCreatedInfo = (TextView) findViewById(R.id.dbLoadLabel); bar = (ProgressBar) findViewById(R.id.pr...