我有一个父卷轴视图和一个列表视图。父滚动视图的属性会影响子列表视图的滚动属性。我无法滚动列表视图只有scrollview的其他子视图正在滚动。我该如何解决这个问题。
我使用了以下xml:
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/newmenu_layout"
android:layout_marginBottom="120dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_marginTop="10dp"
android:overScrollMode="never"
android:scrollbars="none" >
<LinearLayout
android:id="@+id/edit_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<ListView
android:id="@+id/ImageList"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:scrollbars="none" >
</ListView>
<RelativeLayout
android:id="@+id/videodetail"
android:layout_width="fill_parent"
android:layout_height="50dp"
android:layout_marginTop="5dp"
android:background="@drawable/edt_stroke_bg"
android:orientation="horizontal" >
<ImageView
android:id="@+id/img"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_marginLeft="10dp"
android:background="@drawable/video_notes" />
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_marginLeft="5dp"
android:layout_toRightOf="@+id/img"
android:text="@string/videoattach" />
</RelativeLayout>
<RelativeLayout
android:id="@+id/audiodetail"
android:layout_width="fill_parent"
android:layout_height="50dp"
android:layout_marginTop="5dp"
android:background="@drawable/edt_stroke_bg"
android:orientation="horizontal"
android:visibility="gone" >
<ImageView
android:id="@+id/imgaudio"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_marginLeft="10dp"
android:background="@drawable/audio_notes" />
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_marginLeft="5dp"
android:layout_toRightOf="@+id/imgaudio"
android:text="Audio attachment" />
</RelativeLayout>
<RelativeLayout
android:id="@+id/drawingdetail"
android:layout_width="fill_parent"
android:layout_height="50dp"
android:layout_marginTop="5dp"
android:background="@drawable/edt_stroke_bg"
android:orientation="horizontal"
android:visibility="gone" >
<ImageView
android:id="@+id/drawing_img"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_marginLeft="10dp"
android:background="@drawable/video_notes" />
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_marginLeft="5dp"
android:layout_toRightOf="@+id/drawing_img"
android:text="Drawing attachment" />
</RelativeLayout>
<LinearLayout
android:id="@+id/edt_check"
android:layout_width="fill_parent"
android:layout_height="150dp"
android:layout_marginTop="5dp"
android:background="@drawable/edt_stroke_bg"
android:orientation="vertical"
android:paddingStart="5dp" >
<EditText
android:id="@+id/body"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@android:color/transparent"
android:gravity="top"
android:imeOptions="actionDone"
android:paddingLeft="10dp"
android:paddingRight="5dp"
android:paddingTop="5dp" />
</LinearLayout>
</LinearLayout>
</ScrollView>
listview或任何侦听器是否有任何属性可以解决此问题?提前谢谢。
答案 0 :(得分:2)
您的设计不正确。你永远不应该在ListView
内加ScrollView
。 ListView
实现了自己的滚动功能,当ScrollView
处理它们时,它不会收到任何手势。它不会工作。