我想在屏幕上滚动一部分数据,为此我在布局中添加了scrollview,但是listview没有滚动,它在模拟器中工作正常。我阅读了所有与之相关的文章,说listview滚动是不可能的,并尝试了替代设计自定义滚动,但只有部分数据没有滚动。为什么会这样?没有其他选择吗?
我的布局类似于
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/scrollView1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true">
//few more layout items goes here
<LinearLayout android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<ListView android:id="@+id/listView"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:divider="#00000000"
android:dividerHeight="5dp"
android:textStyle="bold"
android:typeface="serif"
/>
<LinearLayout android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Total"
android:textStyle="bold"
android:textColor="#F5D8BA"
android:layout_marginRight="30dp"
android:layout_gravity="center"
android:typeface="serif"
/>
</LinearLayout>
</LinearLayout>
</ScrollView>
,listview中的数据就像
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/scrollView1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:fillViewport="true">
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
android:layout_weight="1"
>
<LinearLayout
android:layout_width="75dp"
android:layout_height="wrap_content" android:orientation="vertical">
<TextView
android:id="@+id/textView1"
android:layout_gravity="center"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="12dp"
android:textColor="#000000"
android:text="TextView"
android:textStyle="bold"
android:typeface="serif"
/>
<TextView
android:id="@+id/textViewStyle"
android:layout_gravity="center"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="12dp"
android:textColor="#000000"
android:textStyle="bold"
android:typeface="serif"
/>
</LinearLayout>
</LinearLayout>
</ScrollView>
答案 0 :(得分:1)
背后的原因 - 您的列表视图位于ScrollView
中按照以下方式解决问题 -
if [cPackageType] = 'GENERAL' then nProviderRate
else nProviderRate/nProviderKM
end as nARate
这样做是禁用ListView lv = (ListView)findViewById(R.id.landHoldingList); // your listview inside scrollview
lv.setOnTouchListener(new ListView.OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
int action = event.getAction();
switch (action) {
case MotionEvent.ACTION_DOWN:
// Disallow ScrollView to intercept touch events.
v.getParent().requestDisallowInterceptTouchEvent(true);
break;
case MotionEvent.ACTION_UP:
// Allow ScrollView to intercept touch events.
v.getParent().requestDisallowInterceptTouchEvent(false);
break;
}
// Handle ListView touch events.
v.onTouchEvent(event);
return true;
}
});
上的TouchEvents并使ScrollView
拦截它们。它很简单,一直有效。
同时从ListView
数据中删除ScrollView
。