91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android如何解決ScrollView下嵌套ListView和GridView中內容顯示不全的問題

發布時間:2021-07-14 09:47:47 來源:億速云 閱讀:191 作者:小新 欄目:移動開發

這篇文章主要介紹了Android如何解決ScrollView下嵌套ListView和GridView中內容顯示不全的問題,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

最近為公司做的一個Demo里面用到了ScrollView嵌套了GridView和ListView,然而在嵌套的時候我發現GridView和ListView都是不能完全顯示,顯示的基本上都是單行的數據,最后查找資料和翻閱文檔看到原因是ListView和GridView的繪制過程中在ScrollView中無法準確的測量自身的高度,而且listVIew和GridView搶占了焦點,使得ListView和GrideView具有自身的顯示的效果,這樣就測量出顯示一行條目即可的距離,其他的條目根據自身的滑動顯示。

我的XMl的部分代碼如下:

<ScrollView 
  android:layout_height="match_parent"
  android:layout_width="fill_parent"
  android:scrollbars="none"
  >
  <LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="#23000000"
    android:orientation="vertical"
    android:paddingTop="-1dp" >
    <android.support.v4.view.ViewPager
      android:id="@+id/home_pager"
      android:layout_width="fill_parent"
      android:layout_height="100dp" >
    </android.support.v4.view.ViewPager>
    <GridView
      android:id="@+id/gv_home"
      android:layout_width="fill_parent"
      android:layout_height="wrap_content"
      android:numColumns="5"
      android:paddingBottom="10dp"
      android:paddingTop="13dp" >
    </GridView>
    <LinearLayout
      android:id="@+id/ll_clickin"
      android:layout_width="fill_parent"
      android:layout_height="30dp"
      android:layout_marginBottom="10dp"
      android:layout_marginLeft="10dp"
      android:layout_marginRight="10dp"
      android:background="@drawable/shape_home"
      android:orientation="horizontal" >
      <ImageView
        android:layout_width="85dp"
        android:layout_height="wrap_content"
        android:src="@drawable/click_in" />
      <TextView
        android:layout_width="match_parent"
        android:layout_height="fill_parent"
        android:gravity="center"
        android:singleLine="true"
        android:text="限時搶購 ,快點進入吧!"
        android:textSize="18sp" />
    </LinearLayout>
    <ListView
      android:id="@+id/list_home"
      android:layout_width="fill_parent"
      android:layout_height="wrap_content"
      android:background="#ffffff" >
    </ListView>
  </LinearLayout>
</ScrollView>

顯示的效果是這樣的其中的Listview和GridView是可以滑動的就是顯示不全

Android如何解決ScrollView下嵌套ListView和GridView中內容顯示不全的問題

用自己寫的方法之后才顯示出來了所有的條目 

Android如何解決ScrollView下嵌套ListView和GridView中內容顯示不全的問題

那就不再廢話了 把我個人研究的代碼呈上

首先是關于ListView的 (注意此方法必須方到SetAdapter()方法之后執行)

這是控件的查找

list_home = (ListView) view.findViewById(R.id.list_home);
list_home.setAdapter(new MyListViewAdapter(grideview_List));
 list_home.setFocusable(false);//詞句加不加像也沒有什么影響,我是加的
 //setAdapter之后調用
 getListViewSelfHeight(list_home);

這是getListViewSelfHeight(ListView youListview)

public void getListViewSelfHeight(ListView listView) {  
      // 獲取ListView對應的Adapter  
    ListAdapter listAdapter = listView.getAdapter();  
    //健壯性的判斷
    if (listAdapter == null) {  
      return;  
    } 
    // 統計所有子項的總高度  
    int totalHeight = 0;  
    for (int i = 0, len = listAdapter.getCount(); i < len; i++) {  
      // listAdapter.getCount()返回數據項的數目  
      View listItem = listAdapter.getView(i, null, listView);  
      // 調用measure方法 傳0是測量默認的大小
      listItem.measure(0, 0);  
      totalHeight += listItem.getMeasuredHeight();  
    }  
    //通過父控件進行高度的申請
    ViewGroup.LayoutParams params = listView.getLayoutParams();  
    //listAdapter.getCount() - 1 從零開始 listView.getDividerHeight()獲取子項間分隔符占用的高度 
    params.height = totalHeight+ (listView.getDividerHeight() * (listAdapter.getCount() - 1));  
    listView.setLayoutParams(params);  
  }

下面是GridView的方法和ListView的測量的方法基本一樣  但是listView是單行條目的不用在擔心列的問題問GridView則是需要進行自己分行和自己分列的 所以要注意一下

gv_home = (GridView) view.findViewById(R.id.gv_home);
  gv_home.setSelector(new ColorDrawable(Color.TRANSPARENT));
 home_pager.setFocusable(false);
 gv_home.setAdapter(new MyGrigeViewAdapter(grideview_List));
 getGridViewSelfHeight(gv_home);

下面是getGridViewSelfHeight(GridView youGrideView)(這個方法能解決問題但是感覺不是很好靈活性太差 我用的獲取的列數始終獲取不到,有看神看到了 給我回復)

public void getGridViewSelfhetght(GridView gridView) {  
    // 獲取GridView對應的Adapter  
    ListAdapter adapter = gridView.getAdapter();  
    if (adapter == null) {  
      return;  
    }  
    int totalHeight = 0;  
    for (int i = 0, len = adapter.getCount(); i < len; i++) {  
      // gridView.getCount()返回數據項的數目  
      View listItem = adapter.getView(i, null, gridView);  
      // 計算子項View 的寬高  
      listItem.measure(0, 0);  
      //此處方法并不好
      //5其中5是我們在Xml中的android:numColumns="5"
      //FontDisplayUtil.dip2px(MyGlobalApplication.getContext(),3)設置下邊據
      totalHeight += listItem.getMeasuredHeight()/5+FontDisplayUtil.dip2px(MyGlobalApplication.getContext(),3);  
    }  
    ViewGroup.LayoutParams params = gridView.getLayoutParams(); 
    params.height = totalHeight;  
    gridView.setLayoutParams(params);  
  }

下面是FontDisplayUtil類

import android.content.Context;
/**
 * dp、sp 、 px之間的相互轉化的工具類
 */
public class FontDisplayUtil {
 /**
 * 將px值轉換為dip或dp值,保證尺寸大小不變
 */
 public static int px2dip(Context context, float pxValue) {
 final float scale = context.getResources().getDisplayMetrics().density;
 return (int) (pxValue / scale + 0.5f);
 }
 /**
 * 將dip或dp值轉換為px值,保證尺寸大小不變
 */
 public static int dip2px(Context context, float dipValue) {
 final float scale = context.getResources().getDisplayMetrics().density;
 return (int) (dipValue * scale + 0.5f);
 }
 /**
 * 將px值轉換為sp值,保證文字大小不變
 */
 public static int px2sp(Context context, float pxValue) {
 final float fontScale = context.getResources().getDisplayMetrics().scaledDensity;
 return (int) (pxValue / fontScale + 0.5f);
 }
 /**
 * 將sp值轉換為px值,保證文字大小不變
 */
 public static int sp2px(Context context, float spValue) {
 final float fontScale = context.getResources().getDisplayMetrics().scaledDensity;
 return (int) (spValue * fontScale + 0.5f);
 }
}

感謝你能夠認真閱讀完這篇文章,希望小編分享的“Android如何解決ScrollView下嵌套ListView和GridView中內容顯示不全的問題”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

杨浦区| 泸溪县| 九龙城区| 宁阳县| 绥阳县| 观塘区| 淳安县| 东至县| 上高县| 临颍县| 木兰县| 凌海市| 峨边| 金乡县| 乃东县| 延津县| 天长市| 河北区| 寿宁县| 噶尔县| 靖宇县| 安乡县| 柯坪县| 铜鼓县| 错那县| 陇西县| 万全县| 江阴市| 溧水县| 寿光市| 安仁县| 佛冈县| 澜沧| 张掖市| 佛学| 武强县| 明星| 钦州市| 五常市| 洛浦县| 磐安县|