本文整理汇总了Java中cn.smssdk.gui.CountryListView类的典型用法代码示例。如果您正苦于以下问题:Java CountryListView类的具体用法?Java CountryListView怎么用?Java CountryListView使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
CountryListView类属于cn.smssdk.gui包,在下文中一共展示了CountryListView类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: onCreateContent
import cn.smssdk.gui.CountryListView; //导入依赖的package包/类
protected void onCreateContent(LinearLayout parent) {
CountryListView countryList = new CountryListView(context);
countryList.setId(ResHelper.getIdRes(context, "clCountry"));
LinearLayout.LayoutParams listParams = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.MATCH_PARENT,
LinearLayout.LayoutParams.WRAP_CONTENT, 1);
countryList.setLayoutParams(listParams);
parent.addView(countryList);
}
示例2: onCreateContent
import cn.smssdk.gui.CountryListView; //导入依赖的package包/类
protected void onCreateContent(LinearLayout parent) {
CountryListView countryList = new CountryListView(context);
countryList.setId(Res.id.clCountry);
LinearLayout.LayoutParams listParams = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.MATCH_PARENT, LinearLayout.LayoutParams.WRAP_CONTENT, 1);
countryList.setLayoutParams(listParams);
parent.addView(countryList);
}