定製gridview使其在listview中當作item使用
改定其onMeasure方法
程式碼如下:
public class ActorGridView extends GridView {
public ActorGridView(Context context) {
super(context);
// TODO Auto-generated constructor stub
}
public ActorGridView(Context context, AttributeSet attrs) {
super(context, attrs);
// TODO Auto-generated constructor stub
}
public ActorGridView(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
// TODO Auto-generated constructor stub
}
@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,如何獲取當前Item的資料?View
- UWP 取消GridView、ListView滑鼠選中、懸停效果View
- ScrollView中巢狀GridView,Listview的辦法View巢狀
- android listView巢狀gridview的使用心得AndroidView巢狀
- Android------Anndroid中ListView在劃屏到底部的時候動態新增ListView的Item實現AndroidView
- android:定製 ListView 的介面AndroidView
- ListView巢狀GridView解決方案View巢狀
- ListView項(Item)的三種佈局View
- android開發中如何動態獲取listview中的item的值AndroidView
- ListView中每個item的左右滑動響應,附原始碼View原始碼
- ListView Item 選擇問題解決之道View
- 1.找出元素 item 在給定陣列 arr 中的位置陣列
- Flutter 中 ListView 的使用FlutterView
- Item定義
- Adapter的getViewTypeCount和getItemViewType及-ListView/GridViewAPTView
- ListView與ScrollView衝突,計算ListView的高度Item,然後重繪View
- GridView 中 DataFormatString 的使用ViewORM
- 使用PowerShell Out-GridView作為GUI替代ViewGUI
- Flutter入門進階之旅(十四)ListView&GridViewFlutterView
- js練習(一)找出元素item在給定陣列arr中的位置JS陣列
- 在swoole中製作一款仿製laravel的框架Laravel框架
- Android 解決ListView巢狀GridView、GridView顯示不正常的方法AndroidView巢狀
- 在遊戲製作中渲染公式推導(轉)遊戲公式
- 在WPF中定製WebBrowser快捷選單Web
- 在vue專案中jsPlumb製作流程圖,拖拽複製使用 jquery 和 jquery UIVueJS流程圖jQueryUI
- 在gridview中編輯時 用dropdownlistView
- 使用 PubSubHubbub 製作 RSS 定時器 —— Laravel RSS (三)定時器Laravel
- 【jackyrong 】asp.net 2.0中在gridview中使用DataFromatStringASP.NETView
- ListView或RecyclerView子項item複用資料錯亂View
- 在遊戲製作中的地形渲染terrainrender(轉)遊戲AI
- 在 Hyperf 框架中,如何定製 gen:model 命令框架
- 遊戲設計製作中對鎖定設定的應用(轉)遊戲設計
- redis當中的複製Redis
- 在DaVinci Resolve Studio Mac中如何使用關鍵幀製作動畫Mac動畫
- Android動態修改ListView中指定Item的元件屬性AndroidView元件
- 在Android中製作移動的漸變背景Android
- 在Excel中製作下拉選單的3種方法Excel
- 在Qt裡使用QSplashScreen類製作Splash啟動視窗QT