我對android編程比較陌生。有誰可以告訴我爲什麼我的ScrollView
不會滾動?Android,LinearLayout將不會滾動
我的活動已實施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>
嘗試刪除android:onClick =「nemaSkrola」,看看它是否有任何區別。 – Slickelito 2013-02-08 15:11:10
嘗試把你的父母LinearLayout android:fillViewport =「true」 android:scrollbars =「vertical」and in ScrollView android:fillViewport =「true」 android:layout_height =「fill_parent」 – vodich 2013-02-08 15:12:27
感謝球員,但仍然沒有。 – jpetrucci 2013-02-08 15:30:57