设置list不能滚动 直接显示所有item


http://www.eoeandroid.com/thread-325172-1-1.html

http://www.eoeandroid.com/thread-325172-1-1.html

http://www.eoeandroid.com/thread-325172-1-1.html

http://www.eoeandroid.com/thread-325172-1-1.html






 /**
         * 设置list不能滚动 直接显示所有item
         */
        @Override
        public void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
                int expandSpec = MeasureSpec.makeMeasureSpec(Integer.MAX_VALUE >> 2,
                                MeasureSpec.AT_MOST);
                super.onMeasure(widthMeasureSpec, expandSpec);

        }








ScrollView与ListView合用(正确计算Listview的高度)的问题解决







最近做项目中用到ScrollView和ListView一起使用的问题,显示的时候ListView不能完全正确的显示,查了好多资料终于成功解决:




首先,ListView不能直接用,要自定义一个,然后重写onMeasure()方法:

复制代码代码如下:

@Override  
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {  
    int expandSpec = MeasureSpec.makeMeasureSpec(Integer.MAX_VALUE >> 2,  
            MeasureSpec.AT_MOST);  
    super.onMeasure(widthMeasureSpec, expandSpec);  

第二步:写个计算listView每个Item的方法:

复制代码代码如下:

public void setListViewHeightBasedOnChildren(ListView listView) {

  // 获取ListView对应的Adapter

  ListAdapter listAdapter = listView.getAdapter();

  if (listAdapter == null) {

   return;

  }

  int totalHeight = 0;

  for (int i = 0; i < listAdapter.getCount(); i++) { // listAdapter.getCount()返回数据项的数目

   View listItem = listAdapter.getView(i, null, listView);

   listItem.measure(0, 0); // 计算子项View 的宽高

   totalHeight += listItem.getMeasuredHeight(); // 统计所有子项的总高度

  }

  ViewGroup.LayoutParams params = listView.getLayoutParams();

  params.height = totalHeight
    + (listView.getDividerHeight() * (listAdapter.getCount() - 1));

  // listView.getDividerHeight()获取子项间分隔符占用的高度

  // params.height最后得到整个ListView完整显示需要的高度

  listView.setLayoutParams(params);

 }

第三步:listview添加适配器后设置高度即可:

复制代码代码如下:

listView.setAdapter(adapter);  
new ListViewUtil().setListViewHeightBasedOnChildren(listView);  









经常要在ScrollView中嵌入ListView,网上方法一大堆,但都比较繁琐。 
本人认为比较好的办法如下: 
Java代码   收藏代码
  1. import android.widget.ListView;  
  2.   
  3. /** 
  4.  * ScrollView中嵌入ListView,让ListView全显示出来 
  5.  * @author reyo 
  6.  * 
  7.  */  
  8. public class MyListView extends ListView{  
  9.   
  10.     public MyListView(android.content.Context context,android.util.AttributeSet attrs){  
  11.         super(context, attrs);  
  12.     }  
  13.   
  14.     /** 
  15.      * 设置不滚动 
  16.      */  
  17.     public void onMeasure(int widthMeasureSpec, int heightMeasureSpec)  
  18.     {  
  19.         int expandSpec = MeasureSpec.makeMeasureSpec(Integer.MAX_VALUE >> 2,  
  20.                 MeasureSpec.AT_MOST);  
  21.         super.onMeasure(widthMeasureSpec, expandSpec);  
  22.   
  23.     }  
  24.       
  25. }  

继承ListView,重写onMeasure即可。 

同样,当ListView中嵌套一个GridView时,也需要重写一下GridView,否则只会显示一行GridView的数据。 
Java代码   收藏代码
  1. import android.widget.GridView;  
  2.   
  3. public class MyGridView extends GridView {  
  4.     public MyGridView(android.content.Context context,  
  5.             android.util.AttributeSet attrs) {  
  6.         super(context, attrs);  
  7.     }  
  8.   
  9.     /** 
  10.      * 设置不滚动 
  11.      */  
  12.     public void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {  
  13.         int expandSpec = MeasureSpec.makeMeasureSpec(Integer.MAX_VALUE >> 2,  
  14.                 MeasureSpec.AT_MOST);  
  15.         super.onMeasure(widthMeasureSpec, expandSpec);  
  16.   
  17.     }  
  18.   
  19. }  
分享到:   
评论
2 楼  远方u 2014-01-10  
采取这个方法,listview模拟了两行,但第一行没有显示 只显示了第二行。求指教
1 楼  songweiguo 2013-09-07  
太棒了,刚好遇到这样的问题。多谢,学习了。












Windows平台VC,对于不同的按钮状态,采用不同的颜色显示文字,实现起来比较复杂,一般都得自绘按钮。但是Android里面实现起来非常方便。 

我们首先添加一个ColorStateList资源XML文件,XML文件保存在res/color/button_text.xml: 
Xml代码   收藏代码
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <selector xmlns:android="http://schemas.android.com/apk/res/android">  
  3.     <item android:state_pressed="true"  
  4.           android:color="#ffff0000"/> <!-- pressed -->  
  5.     <item android:state_focused="true"  
  6.           android:color="#ff0000ff"/> <!-- focused -->  
  7.     <item android:color="#ff000000"/> <!-- default -->  
  8. </selector>  

Java代码   收藏代码
  1. Button btn=(Button)findViewById(R.id.btn);  
  2. Resources resource=(Resources)getBaseContext().getResources();   
  3. ColorStateList csl=(ColorStateList)resource.getColorStateList(R.color.button_text);  
  4. if(csl!=null){  
  5.      btn.setTextColor(color_state_list);//设置按钮文字颜色  
  6. }  


或者也可以这样: 
Java代码   收藏代码
  1. XmlResourceParser xpp=Resources.getSystem().getXml(R.color.button_text);   
  2. try {  
  3.      ColorStateList csl= ColorStateList.createFromXml(getResources(),xpp);  
  4.      btn.setTextColor(csl);  
  5. catch (Exception e) {  
  6.      // TODO: handle exception  
  7. }  


最后附上所有可能出现的状态: 
Xml代码   收藏代码
  1. <?xml version="1.0" encoding="utf-8"?>  
  2.    <selector xmlns:android="http://schemas.android.com/apk/res/android" >  
  3.        <item  
  4.            android:color="hex_color"  
  5.            android:state_pressed=["true" | "false"]  
  6.            android:state_focused=["true" | "false"]  
  7.            android:state_selected=["true" | "false"]  
  8.            android:state_active=["true" | "false"]  
  9.            android:state_checkable=["true" | "false"]  
  10.            android:state_checked=["true" | "false"]  
  11.            android:state_enabled=["true" | "false"]  
  12.            android:state_window_focused=["true" | "false"] />  
  13.    </selector>  













http://blog.csdn.net/hellogv/article/details/6264706

http://blog.csdn.net/hellogv/article/details/6264706

http://blog.csdn.net/hellogv/article/details/6264706


 

Android提高第十九篇之"多方向"抽屉

分类: Android提高   42640人阅读  评论(135)  收藏  举报

本文来自http://blog.csdn.net/hellogv/ ,引用必须注明出处!

       在android上要实现类似Launch的抽屉效果,大家一定首先会想起SlidingDrawer。SlidingDrawer是android官方控件之一,本文的主角不是它,而是民间的控件工具集合~~~android-misc-widgets。android-misc-widgets里面包含几个widget:Panel、SmoothButton、Switcher、VirtualKeyboard,还有一些动画特效,本文主要介绍抽屉容器Panel的用法。android-misc-widgets的google工程地址:-widgets/http://code.google.com/p/android-misc,工程代码中Panel的演示效果如下:

       这个Panel控件可以轻易实现不同方向的抽屉效果,比SlidingDrawer有更强的扩展性!

       在多次使用Panel的过程中,发现Panel有个bug,会间断性出现“闪烁”,也就是在onTouchListener里面的触发ACTION_DOWN后,抽屉瞬间弹出然后瞬间回收(版本日期为Feb 3, 2009)。把原Panel的OnTouchListener,即以下代码:

[java]  view plain copy print ?
  1. OnTouchListener touchListener = new OnTouchListener() {  
  2.     int initX;  
  3.     int initY;  
  4.     boolean setInitialPosition;  
  5.     public boolean onTouch(View v, MotionEvent event) {  
  6.         if (mState == State.ANIMATING) {  
  7.             // we are animating  
  8.             return false;  
  9.         }  
  10. /           Log.d(TAG, "state: " + mState + " x: " + event.getX() + " y: " + event.getY());  
  11.         int action = event.getAction();  
  12.         if (action == MotionEvent.ACTION_DOWN) {  
  13.             if (mBringToFront) {  
  14.                 bringToFront();  
  15.             }  
  16.             initX = 0;  
  17.             initY = 0;  
  18.             if (mContent.getVisibility() == GONE) {  
  19.                 // since we may not know content dimensions we use factors here  
  20.                 if (mOrientation == VERTICAL) {  
  21.                     initY = mPosition == TOP? -1 : 1;  
  22.                 } else {  
  23.                     initX = mPosition == LEFT? -1 : 1;  
  24.                 }  
  25.             }  
  26.             setInitialPosition = true;  
  27.         } else {  
  28.             if (setInitialPosition) {  
  29.                 // now we know content dimensions, so we multiply factors...  
  30.                 initX *= mContentWidth;  
  31.                 initY *= mContentHeight;  
  32.                 // ... and set initial panel's position  
  33.                 mGestureListener.setScroll(initX, initY);  
  34.                 setInitialPosition = false;  
  35.                 // for offsetLocation we have to invert values  
  36.                 initX = -initX;  
  37.                 initY = -initY;  
  38.             }  
  39.             // offset every ACTION_MOVE & ACTION_UP event   
  40.             event.offsetLocation(initX, initY);  
  41.         }  
  42.         if (!mGestureDetector.onTouchEvent(event)) {  
  43.             if (action == MotionEvent.ACTION_UP) {  
  44.                 // tup up after scrolling  
  45.                 post(startAnimation);  
  46.             }  
  47.         }  
  48.         return false;  
  49.     }  
  50. };  

替换为:

[java]  view plain copy print ?
  1. OnTouchListener touchListener = new OnTouchListener() {  
  2.     float touchX, touchY;  
  3.   
  4.     public boolean onTouch(View v, MotionEvent event) {  
  5.         if (mState == State.ANIMATING) {  
  6.             // we are animating  
  7.             return false;  
  8.         }  
  9.   
  10.         int action = event.getAction();  
  11.         if (action == MotionEvent.ACTION_DOWN) {  
  12.             if (mBringToFront) {  
  13.                 bringToFront();  
  14.             }  
  15.             touchX = event.getX();  
  16.             touchY = event.getY();  
  17.         }  
  18.   
  19.         if (!mGestureDetector.onTouchEvent(event)) {  
  20.             if (action == MotionEvent.ACTION_UP) {  
  21.                 // tup up after scrolling  
  22.                 int size = (int) (Math.abs(touchX - event.getX()) + Math  
  23.                         .abs(touchY - event.getY()));  
  24.   
  25.                 if (size == mContentWidth || size == mContentHeight) {  
  26.                     mState = State.ABOUT_TO_ANIMATE;  
  27.                     //Log.e("size", String.valueOf(size));  
  28.                     //Log.e(String.valueOf(mContentWidth),String.valueOf(mContentHeight));  
  29.                 }  
  30.   
  31.                 post(startAnimation);  
  32.             }  
  33.         }  
  34.         return false;  
  35.     }  
  36. };  

即可修复这个bug,并且也同样实现了OnClickListener的功能,可以把原Panel的OnClickListener给删掉了!

















评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值