scrollView嵌套webview+listview listview显示不全 上拉listview加载更多

最近项目需要,用到scrollView嵌套webview+listview来做展示,遇到了一些坑,记录下来。

先上效果图

直接上代码

布局文件




    

        

        
    
<-- AbPullToRefreshView 上拉加载更多的控件 -->
    
        
    

    


layout_post_details_content布局




    


        


            


                
                


                


                
            


            
        


        


        android:focusable="true"
            android:focusableInTouchMode="true" >


            
        


        


        android:focusable="true"
            android:focusableInTouchMode="true" >




                
                
      
        
    




view_footer布局

    android:layout_width="match_parent"
    android:layout_height="42dp"
    android:layout_alignParentBottom="true"
    android:background="#efeeee"
    android:orientation="horizontal" >


            android:id="@+id/tv_postreply"
        android:layout_width="240dp"
        android:layout_height="30dp"
        android:layout_gravity="center_vertical"
        android:layout_marginLeft="16dp"
        android:background="@drawable/atom_edit_bg" />


   

你可能感兴趣的:(scrollView嵌套webview+listview listview显示不全 上拉listview加载更多)