2017-04-02 11 views

答えて

0
に動作しないと動作しません

package com.nulledapps.website2app; 
 

 
import android.content.Intent; 
 
import android.support.v7.app.AppCompatActivity; 
 
import android.os.Bundle; 
 

 
public class SplashScreen extends AppCompatActivity { 
 

 
    @Override 
 
    protected void onCreate(Bundle savedInstanceState) { 
 
     super.onCreate(savedInstanceState); 
 
     setContentView(R.layout.activity_splash_screen); 
 
     Thread mythraed = new Thread(){ 
 
      @Override 
 
      public void run() { 
 
       try { 
 
        sleep(3000); 
 
        Intent intent = new Intent(getApplicationContext(),MainActivity.class); 
 
        startActivity(intent); 
 
        finish(); 
 
       } catch (InterruptedException e) { 
 
        e.printStackTrace(); 
 
       } 
 
      } 
 
     }; 
 
     mythraed.start(); 
 
    } 
 
}

0

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

 
    <uses-permission android:name="android.permission.INTERNET" /> 
 

 
    <application 
 
     android:allowBackup="true" 
 
     android:icon="@mipmap/ic_launcher" 
 
     android:label="@string/app_name" 
 
     android:supportsRtl="true" 
 
     android:theme="@style/AppTheme"> 
 
     <activity 
 
      android:name=".SplashScreen" 
 
      android:label="@string/app_name" 
 
      android:theme="@style/AppTheme.NoActionBar"> 
 
      <intent-filter> 
 
       <action android:name="android.intent.action.MAIN" /> 
 

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

 
</manifest>

0

同じ問題 私はその後、私はナビゲーションドロワーのプロジェクトでそれを使用しようとした、最初のアプリケーションで正常に起動し、スプラッシュ画面を示し、これにしようとすると、空のプロジェクトにスプラッシュ画面を使用MainActivityクラスを呼び出し、それが失敗し、力の停止エラーが表示さ:(私は、@のbilal_el_azrakのコードが、何も変更を試してみました

...

0

これも私が解決するまでには時間がかかりました。

Androidのマニフェストであなたの主な活動は次のようになりますAndroidのマニフェストには、この

Activityセクションのようになります。 Note the MainActive Theme

<activity 
 
    android:name=".MainActivity" 
 
    android:label="@string/title_activity_main" 
 
    android:theme="@style/AppTheme.NoActionBar"> 
 
</activity>

関連する問題