tutorial SplashScreen app
tutorial SplashScreen app
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:gravity="center">
<TextView
android:text="Welcome to my app"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
############################
•Add new java: Splash.java
############################
package com.kc.splashscreen;
import android.app.*;
import android.os.*;
import java.util.*;
import android.content.*;
public class splash extends Activity
{
@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.splash);
############################
•Android Manifest.xml
############################