listview抢焦点

public class MainActivity extends Activity {
	private MyListView lv;
	String[] books = { "A语言", "B语言", "C语言", "D语言", "E语言", "A1语言", "B1语言",
			"C1语言", "D1语言", "E1语言", "A2语言", "B2语言", "C2语言", "D2语言", "E2语言",
			"A2语言", "B2语言", "C语言", "D语言", "E语言" };

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);

		init();
		setListViewHeightBasedOnChildren(lv);

		// lv.getParent().requestDisallowInterceptTouchEvent(false);
	}

	private void init() {
		// TODO Auto-generated method stub
		lv = (MyListView) findViewById(R.id.lv);
		// 配置数据
		ArrayAdapter<String> adapter = new ArrayAdapter<String>(this,
				android.R.layout.simple_list_item_1, books);
		lv.setAdapter(adapter);

		// 计算listview的高度,重新设置
		// change.setOnClickListener(new OnClickListener() {
		//
		// @Override
		// public void onClick(View v) {
		// // TODO Auto-generated method stub
		// setListViewHeightBasedOnChildren(lv);
		// }
		// });
	}

	// 根据listview的数据来计算他的应得的高度,设置高度
	@SuppressWarnings("deprecation")
	public void setListViewHeightBasedOnChildren(MyListView listView) {
		@SuppressWarnings("rawtypes")
		ArrayAdapter listAdapter = (ArrayAdapter) listView.getAdapter();
		if (listAdapter == null) {
			return;
		}
		int totalHeight = 0;

		for (int i = 0; i < listAdapter.getCount(); i++) {
			View listItem = listAdapter.getView(i, null, listView);
			if (listItem != null) {
				listItem.setLayoutParams(new LayoutParams(
						LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT));
				listItem.measure(MeasureSpec.UNSPECIFIED,
						MeasureSpec.UNSPECIFIED); //无束缚测量
				totalHeight += listItem.getMeasuredHeight();
			}
		}
		ViewGroup.LayoutParams params = listView.getLayoutParams();
		params.height = totalHeight
				+ (listView.getDividerHeight() * (listAdapter.getCount() - 1))
				+ listView.getPaddingTop() + listView.getPaddingBottom();
		int h = getWindowManager().getDefaultDisplay().getHeight();
		if (params.height > h / 2) {
			params.height = h / 2;
		}
		listView.setLayoutParams(params);
	}

}

public class MyListView extends ListView{

	public MyListView(Context context, AttributeSet attrs) {
		super(context, attrs);
		// TODO Auto-generated constructor stub
	}
	
	@Override
	public boolean onTouchEvent(MotionEvent ev) {
		// TODO Auto-generated method stub
		boolean b = super.onTouchEvent(ev);
		Log.d("TAG","ListView.......onTouchEvent。。。。"+b+"......."+ev.getAction());
		return b;
	}
	
	@Override
	public boolean onInterceptTouchEvent(MotionEvent ev) {
		// TODO Auto-generated method stub
		boolean b = super.onInterceptTouchEvent(ev);
		Log.d("TAG","ListView.......onInterceptTouchEvent。。。。"+b+"......."+ev.getAction());
		return b;
	}
	
	 public boolean dispatchTouchEvent(MotionEvent ev) {  
        //请求父(Scrollview不截断touch事件,因为Scrollview也有滚动效果)
		 getParent().requestDisallowInterceptTouchEvent(true);  
		 boolean b = super.dispatchTouchEvent(ev);
		 Log.d("TAG","ListView.......dispatchTouchEvent。。。。"+b+"......."+ev.getAction());
        return b;    
    }  

}

<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"
	    >
	    
	    <com.example.scrollviewlistview.MyListView
	        android:id="@+id/lv"
	        android:layout_width="match_parent"
	        android:layout_height="wrap_content"
	        
	        />
	    
	    <TextView 
	        android:layout_width="match_parent"
    		android:layout_height="50dp"
    		android:background="#fbfbfb"
    		android:gravity="center_vertical"
    		android:textAppearance="?android:attr/textAppearanceMedium"
    		android:text="我是占位的"
	        />
	    
	    <TextView 
	        android:layout_width="match_parent"
    		android:layout_height="50dp"
    		android:background="#fbfbfb"
    		android:gravity="center_vertical"
    		android:textAppearance="?android:attr/textAppearanceMedium"
    		android:text="我是占位的"
	        />
	    
	    <TextView 
	        android:layout_width="match_parent"
    		android:layout_height="50dp"
    		android:background="#fbfbfb"
    		android:gravity="center_vertical"
    		android:textAppearance="?android:attr/textAppearanceMedium"
    		android:text="我是占位的"
	        />
	    
	    <TextView 
	        android:layout_width="match_parent"
    		android:layout_height="50dp"
    		android:background="#fbfbfb"
    		android:gravity="center_vertical"
    		android:textAppearance="?android:attr/textAppearanceMedium"
    		android:text="我是占位的"
	        />
	    
	    <TextView 
	        android:layout_width="match_parent"
    		android:layout_height="50dp"
    		android:background="#fbfbfb"
    		android:gravity="center_vertical"
    		android:textAppearance="?android:attr/textAppearanceMedium"
    		android:text="我是占位的"
	        />
	    
	    <TextView 
	        android:layout_width="match_parent"
    		android:layout_height="50dp"
    		android:background="#fbfbfb"
    		android:gravity="center_vertical"
    		android:textAppearance="?android:attr/textAppearanceMedium"
    		android:text="我是占位的"
	        />

	</LinearLayout>

</ScrollView>

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值