0

我在检测 GUI 上的屏幕点击时遇到了一些问题。纵向工作但横向失败,见下文。

我有一个 GUI ( Fragment),其中包含一些说明 + 图像。用户需要点击屏幕上的任意位置才能继续。为了捕获点击/点击事件,我放入了一个View(顶视图),它填充了整个屏幕并位于其他元素上,然后我在这个视图上监听点击,它工作正常。

问题是在横向模式下,文本和图像占据了很大的空间。所以整个事情现在都包裹在一个ScrollView. 这就是问题的开始。当ScrollView它处于活动状态时(即您可以滚动/滚动条可见),我在顶部的视图(顶视图)消失了。似乎在横向模式下,a 中内容的高度ScrollView正在改变。作为一个实验,我View用 a替换了 ,Button并且当它可用时,它Button从纵向填充屏幕变为横向模式下的正常高度。ScrollView

有没有一种方法可以检测到用户在屏幕上的点击,它与ScrollView控件作为顶部元素一起使用。我尝试以多种方式重新排列 GUI,但没有成功,并且我尝试将onClick事件处理程序添加到 中ScrollView,但也没有成功。

我的布局在下面,注意我的顶视图是半透明的红色,所以我可以看到它覆盖的区域。

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true"
android:clickable="true" >

<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" >

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:orientation="vertical" >

        <TextView
            android:id="@+id/txtInstructions"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:gravity="center_horizontal|center_vertical"
            android:padding="10dp"
            android:text="@string/instructions"
            android:textColor="@color/blue"
            android:textSize="20sp" />

        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:adjustViewBounds="true"
            android:maxWidth="250dp"
            android:padding="20dp"
            android:src="@drawable/main_camera" />
    </LinearLayout>


    <View
        android:id="@+id/view_to_listen_for_touch"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:background="#88FF0000"
        android:clickable="true" />

</RelativeLayout>

4

1 回答 1

1

有效的一件事(虽然看起来更像是一个 hack(很丑))是以编程方式View在代码中添加特殊的(在onCreate方法中)并根据 parentRelativeLayout的确切尺寸设置其尺寸。这是一段代码:

//...
        final RelativeLayout parent = (RelativeLayout) findViewById(R.id.ff);
        final View layer = new View(this);
        layer.setBackgroundColor(Color.parseColor("#88FF0000"));
        // the ScrollView really doesn't like this View ,using this without the
        // runnable will not work
        layer.setLayoutParams(new RelativeLayout.LayoutParams(
                RelativeLayout.LayoutParams.MATCH_PARENT,
                RelativeLayout.LayoutParams.MATCH_PARENT));
        layer.setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View v) {
                Toast.makeText(getApplicationContext(), "SDFD",
                        Toast.LENGTH_SHORT).show();
            }
        });
        parent.addView(layer);
        // this is required because if we use directly the getWidth/getHeight we
        // will get 0/0
        layer.post(new Runnable() {

            @Override
            public void run() {
                layer.setLayoutParams(new RelativeLayout.LayoutParams(parent
                        .getWidth(), parent.getHeight()));
            }
        });
//...
于 2012-06-03T19:57:55.837 回答