2013年5月31日

android tabhost之RadioGroup

摘要: 1:布局文件<?xml version="1.0" encoding="utf-8"?> <TabHost xmlns:android="http://schemas.android.com/apk/res/android" android:id="@android:id/tabhost" android:layout_width="fill_parent" android:layout_height="fill_parent" > <Linea 阅读全文

posted @ 2013-05-31 15:42 yujian_bcq 阅读(208) 评论(0) 推荐(0) 编辑

android 之ScrollView下套LIstview两种实现listview拓展的方式

摘要: 1:很简单 在自定义MyListView extends ListView下从写onMeasure方法就行了@Override public void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {int expandSpec = MeasureSpec.makeMeasureSpec(Integer.MAX_VALUE >> 2, MeasureSpec.AT_MOST); super.onMeasure(widthMeasureSpec, expandSpec); }2:计算listView的高度(注意:这种方式 阅读全文

posted @ 2013-05-31 10:02 yujian_bcq 阅读(147) 评论(0) 推荐(0) 编辑

导航