滚动冲突

来源:互联网 发布:软件开发过程 编辑:程序博客网 时间:2024/06/06 13:59

在ScrollView布局中加listview就会形成滚动冲突 ,结果就是显示listview的时候不是满屏的。只能显示里面一条内容。例如

<ScrollView  xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
   
    tools:context=".MainActivity" >
<LinearLayout 
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">
   <ImageView 
        android:id="@+id/iv"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:src="@drawable/ic_launcher"
        android:scaleType="fitXY" />
   <ListView 
       android:id="@+id/lv"
       android:layout_width="match_parent"
       android:layout_height="match_parent"
       
       />
  </LinearLayout>
</ScrollView>

假如我们显示的内容是A B C D E 吧

package com.example;


import android.os.Bundle;
import android.app.Activity;
import android.widget.ArrayAdapter;
import android.widget.ListView;


public class MainActivity extends Activity {


private ListView lsv;


@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
lsv=(ListView)findViewById(R.id.lv);
lsv.setAdapter(new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, new String[]{"A","B","C","D","E"}));
}




}

这就会形成一种滚动冲突。

0 0
原创粉丝点击