0

我在一个 Android 应用程序上工作,我只是尝试通过在应用程序中欢迎的方式在一个空的活动上放置一个背景。在 xml 文件的概述中,显示了图像,但是当我在模拟器或手机上尝试应用程序时,她没有显示。他们没有错误,我不明白。有人能帮助我吗 ?

public class MainActivity extends Activity {

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

    Intent i = new Intent(this, ListeContact.class);
    try
    {
        Thread.sleep(3000);
    }
    catch (InterruptedException e)
    {
        e.printStackTrace();
    }
    startActivity(i);
    this.finish();
}
}

活动主.xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/fond">
</LinearLayout>

PS我的名为font.png的图像位于名为drawable-hdpi、drawable-ldpi、drawable-mdpi、drawable-xdpi和drawable-xxdpi的5个文件夹中。

4

5 回答 5

1
final Handler handler = new Handler();
handler.postDelayed(new Runnable() 
{
  public void run() 
   {
     Intent intent= new Intent(MainActivity.this, ListeContact.class);
     startActivity(intent);
     finish();
   }
}, 3000);

我使用了你的代码并验证了..

于 2013-04-30T09:38:37.937 回答
0

将图像放置在刚刚命名的文件夹drawable 中,这可能会解决您的问题

于 2013-04-30T09:11:46.840 回答
0

不要在 UI 线程中调用 Thread.sleep (在您的情况下为 onCreate 方法)。这可能是原因。使用 AsyncTask 或替代。

于 2013-04-30T09:21:25.610 回答
0

这就是我为实现您现在需要的目标所做的事情:

import android.os.Bundle;
import android.view.MotionEvent;
import android.app.Activity;
import android.content.Intent;
import android.content.pm.ActivityInfo;

public class SplashScreen extends Activity {

    protected int _splashTime = 5000;
    private Thread splashTread;

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

        this.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);

        splashTread = new Thread() {
            @Override
            public void run() {
                try {
                    sleep(5000);
                } catch (InterruptedException e) {
                    e.printStackTrace();
                } finally {
                    startActivity(new Intent(SplashScreen.this,
                            Home.class));
                    finish();
                }
            }
        };
        splashTread.start();
    }

    @Override
    public boolean onTouchEvent(MotionEvent event)
    {
        if (event.getAction() == MotionEvent.ACTION_DOWN)
        {
            synchronized(splashTread)
            {
                    splashTread.notifyAll();
            }
        }
        return true;
    }
}

这是我的 activity_splash_screen.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"
    android:background="@drawable/splash"
    tools:context=".SplashScreen" >

</RelativeLayout>
于 2013-04-30T09:23:41.750 回答
0

我相信问题在于你调用 Thread.Sleep 的方式。试试这个代码的启动画面:

Handler handler = new Handler();
    handler.postDelayed(new Runnable() {
        @Override
        public void run() {
                startActivity(new Intent(getApplicationContext(),
                        ListeContact.class));
            finish();

        }
    }, 3000);
于 2013-04-30T09:26:51.917 回答