当前位置: 首页>>代码示例>>Java>>正文


Java ExpandableListView.setLayoutParams方法代码示例

本文整理汇总了Java中android.widget.ExpandableListView.setLayoutParams方法的典型用法代码示例。如果您正苦于以下问题:Java ExpandableListView.setLayoutParams方法的具体用法?Java ExpandableListView.setLayoutParams怎么用?Java ExpandableListView.setLayoutParams使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在android.widget.ExpandableListView的用法示例。


在下文中一共展示了ExpandableListView.setLayoutParams方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: setExpandedListViewHeightBasedOnChildren

import android.widget.ExpandableListView; //导入方法依赖的package包/类
public static void setExpandedListViewHeightBasedOnChildren(ExpandableListView listView, int groupPosition) {
    ExpandableListAdapter listAdapter = listView.getExpandableListAdapter();
    if (listAdapter == null) {
        return;
    }
    View listItem = listAdapter.getChildView(groupPosition, 0, true, null,
            listView);
    listItem.measure(0, 0);
    int appendHeight = 0;
    for (int i = 0; i < listAdapter.getChildrenCount(groupPosition); i++) {
        appendHeight += listItem.getMeasuredHeight();
    }
    ViewGroup.LayoutParams params = listView.getLayoutParams();
    params.height += appendHeight;
    listView.setLayoutParams(params);
}
 
开发者ID:Zyj163,项目名称:yyox,代码行数:17,代码来源:ExpandedListUtils.java

示例2: setCollapseListViewHeightBasedOnChildren

import android.widget.ExpandableListView; //导入方法依赖的package包/类
public static void setCollapseListViewHeightBasedOnChildren(ExpandableListView listView, int groupPosition) {
    ExpandableListAdapter listAdapter = listView.getExpandableListAdapter();
    if (listAdapter == null) {
        return;
    }
    View listItem = listAdapter.getChildView(groupPosition, 0, true, null,
            listView);
    listItem.measure(0, 0);
    int appendHeight = 0;
    for (int i = 0; i < listAdapter.getChildrenCount(groupPosition); i++) {
        appendHeight += listItem.getMeasuredHeight();
    }
    ViewGroup.LayoutParams params = listView.getLayoutParams();
    params.height -= appendHeight;
    listView.setLayoutParams(params);
}
 
开发者ID:Zyj163,项目名称:yyox,代码行数:17,代码来源:ExpandedListUtils.java

示例3: createRefreshableView

import android.widget.ExpandableListView; //导入方法依赖的package包/类
protected final ExpandableListView createRefreshableView(Context context, AttributeSet attrs) {
    ExpandableListView lv;
    if (VERSION.SDK_INT >= 9) {
        lv = new InternalExpandableListViewSDK9(this, context, attrs);
    } else {
        lv = new InternalExpandableListView(this, context, attrs);
    }
    lv.setLayoutParams(new LayoutParams(-1, -1));
    int mode = getMode();
    String pullLabel = context.getString(2131100695);
    String refreshingLabel = context.getString(2131100699);
    String releaseLabel = context.getString(2131100700);
    if (mode == 1 || mode == 3) {
        this.mLvHeaderLoadingFrame = new FrameLayout(context);
        this.mHeaderLoadingView = new PullToRefreshHeaderView(context, 1, releaseLabel, pullLabel, refreshingLabel, new Object[0]);
        this.mLvHeaderLoadingFrame.addView(this.mHeaderLoadingView, -1, (int) ((60.0f * getResources().getDisplayMetrics().density) + 0.5f));
        this.mHeaderLoadingView.setVisibility(8);
        lv.addHeaderView(this.mLvHeaderLoadingFrame, null, false);
    }
    if (mode == 2 || mode == 3) {
        this.mLvFooterLoadingFrame = new FrameLayout(context);
        this.mFooterLoadingView = new PullToRefreshHeaderView(context, 2, releaseLabel, pullLabel, refreshingLabel, new Object[0]);
        this.mLvFooterLoadingFrame.addView(this.mFooterLoadingView, -1, -2);
        this.mFooterLoadingView.setVisibility(8);
    }
    lv.setId(16908293);
    return lv;
}
 
开发者ID:JackChan1999,项目名称:letv,代码行数:29,代码来源:PullToRefreshExpandableListView.java


注:本文中的android.widget.ExpandableListView.setLayoutParams方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。