有时会出现底部不需要的白条,有时不会出现

时间:2016-12-07 18:02:44

标签: java android android-layout android-studio android-xml

我正在尝试使用Android Studio创建Android游戏。 但是当我从Android Studio测试应用程序时(使用我的手机作为测试设备),屏幕底部会出现一个白色条。如果我切换到另一个活动,然后返回到我的主要活动,白色条将消失。

这是我的主要活动XML:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true"
tools:context="acevix.gladiators3.MainActivity">

<ImageView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:srcCompat="@drawable/splash"
    android:id="@+id/imageView"
    android:scaleType="centerCrop"
    android:layout_alignParentBottom="true"
    android:layout_alignParentLeft="true"
    android:layout_alignParentStart="true"
    android:adjustViewBounds="true" />

<Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:layout_centerHorizontal="true"
    android:layout_marginBottom="140dp"
    android:id="@+id/play"
    android:background="@drawable/play" />

<TextView
    android:text="GLADIATORS PRE-ALPHA V0.0.1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:layout_alignParentLeft="true"
    android:layout_alignParentStart="true"
    android:id="@+id/textView" />

</RelativeLayout>

这是我的styles.xml文件,我为了删除一些UI而编辑了这个文件:

<resources>

<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
    <!-- Customize your theme here. -->
    <item name="colorPrimary">@color/colorPrimary</item>
    <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
    <item name="colorAccent">@color/colorAccent</item>
</style>

活动代码:

package acevix.gladiators3;

import android.content.Intent;
import android.media.MediaPlayer;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.util.DisplayMetrics;
import android.util.Log;
import android.view.View;
import android.view.Window;
import android.view.WindowManager;
import android.widget.Button;

public class MainActivity extends AppCompatActivity {

MediaPlayer splashbgmusic;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    Button playButton = (Button) findViewById(R.id.play);

    DisplayMetrics displaymetrics = new DisplayMetrics();
    getWindowManager().getDefaultDisplay().getMetrics(displaymetrics);
    int height = displaymetrics.heightPixels;
    int width = displaymetrics.widthPixels;

    playButton.setY((float) (height/4.4));
    playButton.getLayoutParams().height = (int) (height / 5.14);
    playButton.getLayoutParams().width = (int) (width / 3.47);



    playButton.setOnClickListener(
            new View.OnClickListener() {
                @Override
                public void onClick(View view) {
                    //Log.d("SIZE", "Height " + view.getHeight() + ", Width: " + view.getWidth());
                    Intent intent = new Intent(MainActivity.this, PlayStage.class);
                    startActivity(intent);
                }
            }
    );
}

@Override
protected void onStart() {
    super.onStart();
}

@Override
protected void onResume() {
    super.onResume();
    splashbgmusic = MediaPlayer.create(MainActivity.this, R.raw.login);
    splashbgmusic.setLooping(true); // Set looping
    splashbgmusic.setVolume(1.0f, 1.0f);
    splashbgmusic.start();
}

@Override
protected void onPause() {
    super.onPause();
    splashbgmusic.stop();
}

@Override
protected void onStop() {
    super.onStop();
    splashbgmusic.stop();
}


@Override
public void onWindowFocusChanged(boolean hasFocas) {
    super.onWindowFocusChanged(hasFocas);
    View decorView = getWindow().getDecorView();
    if(hasFocas) {
        decorView.setSystemUiVisibility(View.SYSTEM_UI_FLAG_LAYOUT_STABLE
        | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY
        | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
        | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION
        | View.SYSTEM_UI_FLAG_FULLSCREEN
        | View.SYSTEM_UI_FLAG_HIDE_NAVIGATION);
    }
}

}

更新:显然问题是由styles.xml文件引起的。如果我将“Theme.AppCompat.Light.NoActionBar”更改为“Theme.AppCompat.Light.DarkActionBar”,白色栏将不再出现但是当我在活动之间切换时,顶部的蓝色导航栏显示名称游戏会在短时间内出现,然后消失。

这是一个YouTube视频,它可以准确显示问题(包含注释):https://www.youtube.com/watch?v=lEdkXZRdsu0

1 个答案:

答案 0 :(得分:1)

尝试执行以下操作

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout     xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/activity_main"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    >

    <ImageView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:src="@drawable/splash"
        android:id="@+id/imageView"
        android:scaleType="fitXY"
        />


  <!--  <ImageView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@drawable/splash"
        android:id="@+id/imageView"
       /> --> //If above dosent work try this.

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true"
        android:layout_marginBottom="140dp"
        android:id="@+id/play"
        android:background="@drawable/play" />

    <TextView
        android:text="GLADIATORS PRE-ALPHA V0.0.1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_alignParentLeft="true"
        android:layout_alignParentStart="true"
        android:id="@+id/textView" />

    </RelativeLayout>

P.S参考您的意见

在您的活动的onCreate(...)

写上setContentView(R.layout.splash); getActionBar().hide();

setContentView(R.layout.splash);
getSupportActionBar().hide();

隐藏actionbar