-1

您好,我在 imageViews 的 Android 生命周期中对 metaio 有所了解。我如何创建一个图像视图(例如),并在三秒钟后变得不可见或被破坏?我的图像在 xml 文件中,可见性消失了,当您触摸按钮时,它们变得可见,但我希望图像仅可见几秒钟。

我的问题是我有一种方法,我想在屏幕上显示拍摄,然后拍摄必须消失。我等不及了,几秒钟后变得可见,因为在 metaio 上,渲染在另一个地方(我不知道在哪里)。我的 imageView 在 xml 上但不可见。

public void onDisparo(View v){ 
    laser = (ImageView) findViewById(R.id.imageLaser);
    laser.setVisibility(View.VISIBLE);
    }

}
4

1 回答 1

0

你是说闪屏吗?

activity_splash.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"
    android:background="@drawable/gradient_background" >

    <ImageView
        android:id="@+id/imgLogo"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:src="@drawable/logo" />


</RelativeLayout>

闪屏.java

 package androidsplashscreentimer;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.os.Handler;

public class SplashScreen extends Activity {

    // Splash screen timer
    private static int SPLASH_TIME_OUT = 3000;

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

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

            /*
             * Showing splash screen with a timer. This will be useful when you
             * want to show case your app logo / company
             */

            @Override
            public void run() {
                // This method will be executed once the timer is over
                // Start your app main activity
                Intent i = new Intent(SplashScreen.this, MainActivity.class);
                startActivity(i);

                // close this activity
                finish();
            }
        }, SPLASH_TIME_OUT);
    }

}
于 2014-01-26T10:55:38.623 回答