4

我对android编程比较陌生。谁能告诉我为什么我ScrollView不会滚动?

我的活动已实施OnGestureListener以获取一些触摸信息。但是,我尝试禁用onGestureListener它仍然无法正常工作。

它在 SlidingDrawer 之外工作。是否有可能让它在 SlidingDrawer 内部工作?

我通过提供 ScrollView ID 解决了这个问题,然后将该 ID 放入 SlidingDrawer android:content="@+id/content"。

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

        <LinearLayout
            android:layout_width="100dp"
            android:layout_height="match_parent"
            android:layout_gravity="right"
            android:orientation="vertical" >

            <SlidingDrawer
                android:id="@+id/prosirenje"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:orientation="horizontal"
                android:content="@+id/content"
                android:handle="@+id/handle" >

                <Button
                    android:id="@+id/handle"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:background="@drawable/gumb_slider"
                     />

                <ScrollView
                android:layout_width="fill_parent"
                android:layout_height="wrap_content">

                    <LinearLayout
                        android:id="@+id/content"
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:background="@drawable/slider"
                        android:gravity="center"
                        android:onClick="nemaSkrola"
                        android:orientation="vertical" >

                        <Button
                            android:id="@+id/ico_povecalo"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:layout_margin="20dp"
                            android:background="@drawable/ikona_povecalo" />

                        <Button
                            android:id="@+id/ico_desktop"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:layout_margin="20dp"
                            android:background="@drawable/ikona_komp" />

                        <Button
                            android:id="@+id/ico_daljinski"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:layout_margin="20dp"
                            android:background="@drawable/ikona_play" />

                        <Button
                            android:id="@+id/ico_tipkovnica"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:layout_margin="20dp"
                            android:background="@drawable/ikona_tipka" />

                        <Button
                            android:id="@+id/ico_settings"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:layout_margin="20dp"
                            android:background="@drawable/ikona_settings" />

                    </LinearLayout>

                </ScrollView>

            </SlidingDrawer>

        </LinearLayout>

    </LinearLayout>
4

2 回答 2

2

给scrollView的宽度和高度一些值,然后像这样尝试

<ScrollView
    android:id="@id/content"
    android:layout_width="300dp"
    android:layout_height="300dp"
    android:layout_centerHorizontal="true"
    android:layout_marginTop="15dp">
    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical" >
    </LinearLayout>
</ScrollView>

请像这样更改滚动视图 ID:

android:id="@id/content"

请像这样更改手柄按钮ID:

android:id="@id/handle"
于 2013-02-08T15:27:24.477 回答
1

的容器(分层父级)以ScrollView这种方式设置了以下属性:android:layout_height="match_parent",这迫使它们将其内容限制在活动(屏幕)的高度。
为了您ScrollView的工作,请尝试将其ScrollView提升到更高的层级,这样就不会受到其父级的限制。

于 2013-02-08T15:28:43.620 回答