0

大家好,我有这个带有布局 main.xml 的初始屏幕,其中包含一个 imageview,这是 main.xml 文件

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/LinearLayout2"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<ImageView
    android:id="@+id/imageView1"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:src="@drawable/slide11" />
</LinearLayout>

这是我的 splashscreen.class 文件

protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
 try {  
           new Handler().postDelayed(new Runnable() {
            public void run() 
            Intent intent = new Intent(getApplicationContext(),content_activity.class);
            startActivity(intent);
            Main.this.finish();   }  }, 5000);
            } catch(Exception e){}
}
 @Override
public void onBackPressed() {

        super.onBackPressed();
} }

当我尝试在我的模拟器中运行它时一切正常,但是当我尝试通过调试模式在设备中运行它时,我没有得到 imageView 中指定的图像,但是在指定的时间内我得到一个白屏。任何帮助将非常感激。

//编辑:我仔细检查了 res/drawable 文件夹,我主要尝试使用 png 并且还尝试使用 .gif 在设备中没有工作。(设备 micromax a110)

4

4 回答 4

7

使用它而不是您的布局。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/LinearLayout2"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@drawable/slide11" >

于 2013-07-17T05:04:29.017 回答
5

看起来是因为图像的大小,当缩小工作时!

于 2013-07-17T05:30:12.443 回答
1
Use image as layout background :-

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/LinearLayout2"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
 android:background="@drawable/slide11"

 >

</LinearLayout>
于 2013-07-17T05:06:51.337 回答
0

这可能是由于清单文件中的问题而发生的。这是我的清单文件的示例,它有 3 个活动和 1 个启动画面。希望这会有所帮助。

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

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/Theme.FoodOrder">
        <activity android:name=".MainActivity"></activity>
        <activity android:name=".Final_activity" />
        <activity android:name=".Second_activity" />
        <activity
            android:name=".SplashActivity"
            android:exported="true">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

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

</manifest>
于 2021-08-04T06:47:58.880 回答