Android開發隨筆之ScrollView嵌套GridView

來源:互聯網
上載者:User

標籤:

在開發過程總遇到ScrollView嵌套GridView,由於這兩種控制項都帶有捲軸,當他們碰到一起的時候便會出問題,問題是gridview不滾動,並且只顯示兩行,為此看了官方文檔,Google回答滾動裡面沒必要再加滾動,不符合UI設計。最後還是找到了網上大牛的解決方案才搞定的。

  大概寫個demo測試了下,還是能嵌套使用的,提前GridView效能好像降低了。如果載入過多,UI載入變的很卡。

  主要xml布局為:

<?xml version="1.0" encoding="utf-8"?><ScrollView xmlns:android="http://schemas.android.com/apk/res/android"    android:layout_width="fill_parent"    android:layout_height="fill_parent"     android:scrollbars="none"    >    <LinearLayout        android:layout_width="fill_parent"        android:layout_height="wrap_content"        android:background="#ff00ff"        android:orientation="vertical" >        <com.test.MyGridView            android:id="@+id/gridview"            android:layout_width="fill_parent"            android:layout_height="wrap_content"            android:background="#00ffff"            android:numColumns="5" />        <LinearLayout            android:layout_width="fill_parent"            android:layout_height="1000dp"            android:background="#ffff00" >        </LinearLayout>    </LinearLayout></ScrollView>

裡面的MyGridView繼承了GridView重寫了onMeasure方法,代碼: 

package com.test;import android.content.Context;import android.util.AttributeSet;import android.widget.GridView;public class MyGridView extends GridView {     public MyGridView(Context context, AttributeSet attrs) {         super(context, attrs);     }     public MyGridView(Context context) {         super(context);     }     public MyGridView(Context context, AttributeSet attrs, int defStyle) {         super(context, attrs, defStyle);     } //該自訂控制項只是重寫了GridView的onMeasure方法,使其不會出現捲軸,ScrollView嵌套ListView也是同樣的道理,不再贅述。     @Override     public void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {         int expandSpec = MeasureSpec.makeMeasureSpec(                 Integer.MAX_VALUE >> 2, MeasureSpec.AT_MOST);         super.onMeasure(widthMeasureSpec, expandSpec);     } }

通過上面重寫的GridView,既可以嵌套到ScrollView裡面。

Android開發隨筆之ScrollView嵌套GridView

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.