我需要在android中实现这个布局。视图必须有两个列表视图共享30-70%的屏幕空间.. 右侧的列表必须是水平可滚动和垂直的...左侧的列表必须只能在垂直方向上滚动...并且每个列表项(记录)必须在同一行中列表向上/向下滚动。我尝试以这种方式实现相同的方法,它工作正常但滚动时不够平滑......并且大多数时候屏幕变黑...
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:orientation="vertical">
<LinearLayout android:layout_width="wrap_content"
android:layout_height="wrap_content" android:orientation="horizontal">
<ListView android:id="@+id\lV1" android:layout_width="100dp"
android:layout_height="wrap_content" />
<HorizontalScrollView android:layout_width="wrap_content"
android:layout_height="wrap_content">
<ListView android:id="@+id/lV2" android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</HorizontalScrollView>
</LinearLayout>
</LinearLayout>
请注意,整个布局需要在标签视图中显示。 我将布局更改为此,但仍然没有好结果
<?xml version="1.0" encoding="utf-8"?>
<ScrollView android:layout_width="fill_parent" android:fillViewport="true"
android:layout_height="fill_parent" xmlns:android="http://schemas.android.com/apk/res/android">
<RelativeLayout android:layout_width="match_parent"
android:layout_height="fill_parent" >
<ListView android:id="@+id/lV1" android:layout_width="100px"
android:layout_height="wrap_content" android:background="@color/white"
android:fadingEdge="vertical" android:cacheColorHint="#00000000"
android:fastScrollEnabled="true" />
<HorizontalScrollView android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_toRightOf="@id/listView1">
<ListView android:id="@+id/lV2" android:layout_width="wrap_content"
android:fastScrollEnabled="true" android:layout_height="wrap_content"
android:background="@color/white" android:cacheColorHint="#00000000"
android:layout_toRightOf="@id/lV1" />
</HorizontalScrollView>
</RelativeLayout>
</ScrollView>
答案 0 :(得分:1)
将android:cacheColorHint="#00000000"
添加到列表视图中可以防止列表变黑