大侠们 急急急 ,gallery 和ListView 怎样一块滑动。
本人纯是个菜鸟,做了一个布局 类似网易截图,上面是一个gallery 下面是一个自定义Listview 我的原意就是Gallery和 Listview一起上下滑动。但是我的只能实现Listview滑动~~~下面是我的代码,希望大侠们能帮忙看一下,感激不尽!!!!!<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:orientation="vertical"
android:layout_height="wrap_content">
<Gallery xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/gallery" android:layout_width="match_parent"
android:layout_height="wrap_content" android:background="@drawable/listviewbackground" />
<ListView android:id="@+id/main_listView"
android:layout_height="wrap_content" android:layout_width="match_parent"
android:clickable="true" />
<!-- android:groupIndicator="@null" android:clickable="true" <LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical"
android:layout_width="fill_parent" android:layout_height="fill_parent" android:id="@+id/layout"> -->
</LinearLayout>
复制代码 --------------------编程问答-------------------- 你说的一起滑动是同时滑动,还是说都可以滑动,如果是第二种,是因为焦点问题,你每次只能选中一个焦点View去滑动
补充:移动开发 , Android