本文介绍了这是什么装载般的菜单吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我一直在编程Android和拥有Facebook登录 - 只要我的应用程序启动或登录到Facebook的它抛出了这个画面:

我已经无法正确命名该屏幕也没有我能找到它在谷歌。

我希望更改其设计 - 主要更改操作杆为我的应用程序动作条不具备徽标和应用程序名称

有谁知道这是什么屏幕被调用,在那里我可以找到它的文档?

我不知道,如果它的相关性,但纺纱装圆仅present时,该屏幕通过Facebook登录显示 - 屏幕还显示,如果你启动应用程序多达生效后停止它,但没有圈


解决方案

这加载屏幕被称为闪屏。
是如何改变的好你的计算器启动画面(如下重要/关键/所需的步骤)。这也将删除闪屏操作栏以及

链接的关键部分:

<?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 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"  <!-- Not needed->-->
                    android:layout_height="wrap_content"
                    android:text="Hello World, splash"/> <!--Not Needed -->

  </LinearLayout>
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);
    }
}

这篇关于这是什么装载般的菜单吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-22 21:42