1

surfaceView を介してこれを行う方法を知っていますが、そのルートを下るべきかどうか疑問に思っています。

不透明な画像が上に(少し遅れて)配置されたフルスクリーン画像を持つスプラッシュスクリーンを作成しようとしています。これが 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"
>

<ImageView
android:id="@+id/lightDot"
android:src="@drawable/splashlight"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@null"
 />

<ImageView
android:id="@+id/bGround"
android:src="@drawable/splash"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
 />

したがって、私の「lightDot」オブジェクトは半透明であり、少し遅れてこれを bGround リソースの上にオーバーレイしたいと考えています。

これは私のコードです:

import android.app.Activity;
import android.content.Intent;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.ImageView;

public class SplashAct extends Activity implements OnClickListener{

Button mainButton;
Button lightDot;
ImageView background;
ImageView light;

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

    background = (ImageView)findViewById(R.id.bGround); 
    light = (ImageView)findViewById(R.id.lightDot); 

    background.setOnClickListener(this);
}


@Override
public void onClick(View arg0) {
    //finish();
    Intent toMainGame = new Intent(this, ActOptions.class);
    startActivity(toMainGame);
    }



}

ありがとうございました。

4

4 に答える 4

7

必要なのはFrameLayoutです。

子ビューはスタックに描画され、最後に追加された子が一番上になります。

を使用してオーバーレイがどこに行くかをもっと工夫することもできますが、layout_gravity必要なのはこれだけのようです。

    <FrameLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" >

        <ImageView
            android:id="@+id/image"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:src="@drawable/image" >
        </ImageView>

        <ImageView
            android:id="@+id/overlay"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:src="@drawable/overlay"/>
    </FrameLayout>
于 2013-02-05T22:38:05.793 に答える
0
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:id="@+id/ll"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
***android:background="@drawable/splash"*** >

// Try this for invisible
iv.getBackground().setAlpha(0);

//Try this for visible 
iv.getBackground().setAlpha(255);

//What great about this is that you could create a loop 
//to slowly increment the alpha, creating a fade effect instead of 
//invisible to visible.
于 2013-02-05T22:20:06.653 に答える
0

線形レイアウトではなく相対レイアウトを使用します。

これにより、線形リストとは対照的に、ビューを互いの上に配置できます。

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

  <ImageView
    android:id="@+id/lightDot"
    android:src="@drawable/splashlight"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@null"
     />

  <ImageView
    android:id="@+id/bGround"
    android:src="@drawable/splash"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
     />

</RelativeLayout>

時間の経過後にドットを表示するandroid:visiblity="INVISIBLE"には、xml で使用します。(そのため、非表示になります)

次にlight.setVisiblity(View.VISIBLE);、コードで使用します。

于 2013-02-05T22:29:21.270 に答える
0

LayerDrawableを使用できます

シンプルな LinearLayout を定義する

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

Activity クラスで:

LinearLayout layout = (LinearLayout) findViewById(R.id.splash_layout);
Drawable drawableLayers[] = new Drawable[] {getResources().getDrawable(R.drawable.splash), getResources().getDrawable(R.drawable.splashlight)};
// ^ The order of drawables is important: The above line overlays splashlight on top of splash.
LayerDrawable layerDrawable = new LayerDrawable(drawableLayers);
layout.setBackgroundDrawable(layerDrawable);
于 2013-02-05T22:45:54.227 に答える