0

添加后

android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
android:hardwareAccelerated="false" 

在 manifest.xml 的应用程序中,只有主屏幕上下移动。之前它工作正常。但我需要我的应用程序处于全屏模式,没有标题。直到现在我还没有得到任何解决方案。先感谢您

4

2 回答 2

0

请为资源中的所有版本平台定义样式或创建基础活动

并使用此代码隐藏标题

    requestWindowFeature(Window.FEATURE_NO_TITLE);
    getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, 
                            WindowManager.LayoutParams.FLAG_FULLSCREEN);

并且请确保 android:hardwareAccelerated="true" 以获得更好的性能

我在我的所有应用程序中都使用这些 ,,, ......从来没有这样的事情发生在任何设备上

<uses-sdk 
    android:minSdkVersion="9"
    android:targetSdkVersion="14" />

  <activity
        android:name="com.example.app.SplashActivity"
        android:label="@string/app_name"
        android:screenOrientation="portrait"
        android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen" >
于 2013-12-06T09:12:22.590 回答
0
import android.app.Activity;
import android.os.Bundle;
import android.view.Window;
import android.view.WindowManager;

public class ActivityName extends Activity {
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        // remove title
        requestWindowFeature(Window.FEATURE_NO_TITLE);
        getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
            WindowManager.LayoutParams.FLAG_FULLSCREEN);
        setContentView(R.layout.main);
    }
}

您可以通过编程方式尝试...

于 2013-12-06T09:12:35.947 回答