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

1

のコンテナー (階層的な親) には、ScrollViewこのように設定された次の属性がありますandroid:layout_height="match_parent"。機能させるには、親によって制約されないように、より高い階層レベルに到達するようにしてください
ScrollViewScrollView

于 2013-02-08T15:28:43.620 に答える