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


Java ExpandableListView.setEmptyView方法代码示例

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


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

示例1: initViews

import android.widget.ExpandableListView; //导入方法依赖的package包/类
private void initViews() {
	mNavigationIndex = getIntent()
			.getIntExtra(EXTRA_PRE_LOAD_DATA_INDEX, 0);
	llytOperate = (LinearLayout) findViewById(R.id.operate);
	btnCancel = (Button) findViewById(R.id.cancel);
	btnCancel.setOnClickListener(this);
	btnPay = (Button) findViewById(R.id.pay);
	btnPay.setOnClickListener(this);
	tvEmptyView = (TextView) findViewById(R.id.emptyView);
	lvOrders = (ExpandableListView) findViewById(R.id.orders);

	lvOrders.setEmptyView(tvEmptyView);
	LayoutInflater inflater = (LayoutInflater) getSystemService(LAYOUT_INFLATER_SERVICE);
	View footerView = inflater.inflate(R.layout.fv_a6_order, null);
	lvOrders.addFooterView(footerView);
	mAdapter = new A6OrderExpandableAdapter(this, mLstODBInfos);
	lvOrders.setAdapter(mAdapter);

	// btnPay.setEnabled(false);
	setPanelGone(true);
}
 
开发者ID:SShineTeam,项目名称:Huochexing12306,代码行数:22,代码来源:A6OrderAty.java

示例2: onContentChanged

import android.widget.ExpandableListView; //导入方法依赖的package包/类
/**
 * Updates the screen state (current list and other views) when the content changes.
 * 
 * @see android.support.v7.app.AppCompatActivity#onContentChanged()
 */
@Override
public void onContentChanged() {
	super.onContentChanged();
	View emptyView = findViewById(R.id.empty);
	mList = (ExpandableListView) findViewById(R.id.list);
	if (mList == null) {
		throw new RuntimeException(
				"Your content must have a ExpandableListView whose id attribute is " +
						"'R.id.list'");
	}
	if (emptyView != null) {
		mList.setEmptyView(emptyView);
	}
	mList.setOnChildClickListener(this);
	mList.setOnGroupExpandListener(this);
	mList.setOnGroupCollapseListener(this);

	if (mFinishedStart) {
		setListAdapter(mAdapter);
	}
	mFinishedStart = true;
}
 
开发者ID:runtimeco,项目名称:Android-DFU-App,代码行数:28,代码来源:ExpandableListActivity.java


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