SORU
30 Mart 2011, ÇARŞAMBA


Nasıl bir ekranı yapabilirim?

Bir ekranı yapmak istediğime karar verdim bu yüzden benim app daha profesyonel bir görünüm yapmak istedim.

Nasıl oluşturmak ve uygulamak ki?

CEVAP
30 Mart 2011, ÇARŞAMBA


NASIL: Simple spash screen

Bu cevaplar sadece app örneğin markalaşma nedenlerle başladığında belirli bir süre için ekranı görüntülemek için nasıl gösterir.

İlk layout.xml dosyasında spash screen tanımlamak gerekir

  <?xml version="1.0" encoding="utf-8"?>
  <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
          android:orientation="vertical" android:layout_width="fill_parent"
          android:layout_height="fill_parent">

          <ImageView android:id="@ id/splashscreen" android:layout_width="wrap_content"
                  android:layout_height="fill_parent"
                  android:src="@drawable/splash"
                  android:layout_gravity="center"/>

          <TextView android:layout_width="fill_parent"
                    android:layout_height="wrap_content"
                    android:text="Hello World, splash"/>

  </LinearLayout>

Ve aktivite:

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.os.Handler;

public class Splash extends Activity {

    /** Duration of wait **/
    private final int SPLASH_DISPLAY_LENGTH = 1000;

    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle icicle) {
        super.onCreate(icicle);
        setContentView(R.layout.splashscreen);

        /* New Handler to start the Menu-Activity 
         * and close this Splash-Screen after some seconds.*/
        new Handler().postDelayed(new Runnable(){
            @Override
            public void run() {
                /* Create an Intent that will start the Menu-Activity. */
                Intent mainIntent = new Intent(Splash.this,Menu.class);
                Splash.this.startActivity(mainIntent);
                Splash.this.finish();
            }
        }, SPLASH_DISPLAY_LENGTH);
    }
}

Hepsi bu kadar ;)

Bunu Paylaş:
  • Google+
  • E-Posta
Etiketler:

YORUMLAR

SPONSOR VİDEO

Rastgele Yazarlar

  • Bach Vlogs

    Bach Vlogs

    18 HAZİRAN 2011
  • Chilla Frilla™

    Chilla Frill

    7 Aralık 2006
  • Metheud

    Metheud

    9 EYLÜL 2006