Не могу удалить заголовок приложения для Android

У вас большие проблемы с удалением строки заголовка с помощью кнопки настроек. Когда я пытаюсь удалить его с помощью кода: android:theme="@android:style/Theme.NoTitleBar.Fullscreen"> или подобным образом, я получаю сбой приложения.

Приложение состоит из заставки и веб-просмотра.

Вот код:

Манифест Android:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="uniquewebsolutions.slatkimacorcvecara" >

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme"
    android:debuggable="false" >
    <!-- Splash screen -->

    <activity
        android:name=".splashscreen"
        android:label="@string/app_name"
        android:screenOrientation="portrait"
        android:noHistory="true" >

        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>


    <!-- Main activity -->
    <activity
        android:name=".MainActivity"
        android:label="@string/app_name" >
    </activity>
</application>
<uses-permission android:name="android.permission.INTERNET" />
</manifest>

Splashscreen.xml

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

<ImageView
    android:src="@drawable/splash"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:scaleType="fitXY"/>

</RelativeLayout>

Splashscreen.java

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

<ImageView
    android:src="@drawable/splash"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:scaleType="fitXY"/>

</RelativeLayout>

Splashscreen.java

package uniquewebsolutions.slatkimacorcvecara;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.os.Handler;
import android.view.Window;
import android.view.WindowManager;

public class splashscreen extends Activity {

private static int splashInterval = 6000;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    requestWindowFeature(Window.FEATURE_NO_TITLE);
    getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
            WindowManager.LayoutParams.FLAG_FULLSCREEN);

    setContentView(R.layout.splashscreen);

    new Handler().postDelayed(new Runnable() {


        @Override
        public void run() {
            Intent i = new Intent(splashscreen.this, MainActivity.class);
            startActivity(i);
            this.finish();
        }

        private void finish() {
            // TODO Auto-generated method stub
        }
    }, splashInterval);
}}

MainActivity.java

package uniquewebsolutions.slatkimacorcvecara;

import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.webkit.WebSettings;
import android.webkit.WebView;


public class MainActivity extends ActionBarActivity {

private WebView mWebView;

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

    mWebView = (WebView) findViewById(R.id.activity_main_webview);
    WebSettings webSettings = mWebView.getSettings();
    webSettings.setJavaScriptEnabled(true);
    mWebView.loadUrl("http://androidapp.cvecaraslatkimacor.com/");
    // Force links and redirects to open in the WebView instead of in a browser
    mWebView.setWebViewClient(new MyAppWebViewClient());

           mWebView.getSettings().setRenderPriority(WebSettings.RenderPriority.HIGH);
    mWebView.getSettings().setCacheMode(WebSettings.LOAD_NO_CACHE);

}

@Override
public void onBackPressed() {
    if(mWebView.canGoBack()) {
        mWebView.goBack();
    } else {
        super.onBackPressed();
    }
}


@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.menu_main, menu);
    return true;
}

@Override
public boolean onOptionsItemSelected(MenuItem item) {
    // Handle action bar item clicks here. The action bar will
    // automatically handle clicks on the Home/Up button, so long
    // as you specify a parent activity in AndroidManifest.xml.
    int id = item.getItemId();

    //noinspection SimplifiableIfStatement
    if (id == R.id.action_settings) {
        return true;
    }

    return super.onOptionsItemSelected(item);
}
}

ActivityMain.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">

<WebView
    android:id="@+id/activity_main_webview"
    android:layout_height="match_parent"
    android:layout_width="match_parent" />
</RelativeLayout>

1 ответ

Решение

Попробуй это

Измените тему базового приложения с темы Appcompat на тему Android и создайте новую тему для экрана-заставки.

<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="android:Theme.DeviceDefault.Light.DarkActionBar">
    <!-- Customize your theme here. -->
</style>

<!-- Splash screen theme. -->
<style name="SplashTheme" parent="android:Theme.DeviceDefault.Light.NoActionBar">
    <!-- Customize your theme here. -->
</style>
</resources>

Теперь сделайте вашу MainActivity для расширения Activity вместо ActionBarActivity

public class MainActivity extends Activity {

Откройте menu_main.xml и измените

app:showAsAction="never"

в

android:showAsAction="never"

В AndroidManifest.xml установите тему для заставки следующим образом

<activity
    android:name=".splashscreen"
    android:label="@string/app_name"
    android:screenOrientation="portrait"
    android:theme="@style/SplashTheme"
    android:noHistory="true" >

    <intent-filter>
        <action android:name="android.intent.action.MAIN" />

        <category android:name="android.intent.category.LAUNCHER" />
    </intent-filter>
</activity>

Удалите эти строки из SplashScreen.java

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

И вы получите то, что хотели. Ошибка, которую вы получили, потому что вы переключаетесь с Activity на ActionBarActivity

Другие вопросы по тегам