本文整理汇总了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);
}
示例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);
}
示例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;
}