SplashScreen上的手势叠加

时间:2016-02-04 12:35:18

标签: android splash-screen android-gesture

我正在尝试在用作启动画面的活动上使用手势叠加。

问题是当我:gOverlay = (GestureOverlayView) this.findViewById(R.id.gOverlay);时,gOverlay为空。

这是我的XML:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:id="@+id/LinearLayout01"
android:layout_width="fill_parent" android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android"
android:gravity="center" android:background="#000000"
android:weightSum="1">

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_weight="0.11">
    <android.gesture.GestureOverlayView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:id="@+id/gOverlay"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true"
        android:visibility="visible"
        android:background="#000000"
        >
    </android.gesture.GestureOverlayView>
 </RelativeLayout>

 </LinearLayout>

这是Splash java代码:

   public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.splash);
    /** set time to splash out */

    Bundle extras = getIntent().getExtras();
    if (extras != null) {
        Duration = extras.getString("Duration");
    }
    welcomeScreenDisplay = 4000;
    try {
        welcomeScreenDisplay = Integer.parseInt(Duration);
    } catch (Exception x) {
    }

    gLibrary = GestureLibraries.fromRawResource(this, R.raw.gestures);

    if (!gLibrary.load()) {
        finish();
    }
    gOverlay = (GestureOverlayView) this.findViewById(R.id.gOverlay);
    gOverlay.setGestureVisible(false);
    gOverlay.addOnGesturePerformedListener(this);

    /** create a thread to show splash up to splash time */
    Thread welcomeThread = new Thread() {
        int wait = 0;

        @Override
        public void run() {
            try {
                super.run();

                while (wait < welcomeScreenDisplay) {
                    sleep(100);
                    wait += 100;
                }
            } catch (Exception e) {
                System.out.println("EXc=" + e);
            } finally {

                finish();
            }
        }
    };
    welcomeThread.start();

}

我想做的是: 1.当用户按下后退按钮时,将显示启动画面。 2.此闪屏将在屏幕上显示n秒钟 3.如果用户在启动画面上绘制'L',隐含在手势叠加上,主要活动将为.finish()

由于

1 个答案:

答案 0 :(得分:2)

根据您提供的评论,您似乎正在夸大错误的布局。

你说过,包含GestureOverlayView的布局名为splash2。

setContentView(R.layout.splash);

但相反,你是膨胀飞溅,而不是splash2。如果splash.xml不包含带有GestureOverlayView的{​​{1}},那么从splash请求gOverlay将抛出一个nullpointer。

将您的活动中的android:id="@+id/gOverlay"更改为以下内容应该有所帮助:

setContentView()