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


Java ResHelper.getScreenWidth方法代码示例

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


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

示例1: calculateSize

import com.mob.tools.utils.ResHelper; //导入方法依赖的package包/类
protected void calculateSize(Context context, ArrayList<Object> plats) {
	int screenWidth = ResHelper.getScreenWidth(context);
	lineSize = LINE_SIZE_P;

	float ratio = ((float) screenWidth) / DESIGN_SCREEN_WIDTH_P;
	sepLineWidth = (int) (DESIGN_SEP_LINE_WIDTH * ratio);
	sepLineWidth = sepLineWidth < 1 ? 1 : sepLineWidth;
	logoHeight = (int) (DESIGN_LOGO_HEIGHT * ratio);
	paddingTop = (int) (DESIGN_PADDING_TOP * ratio);
	bottomHeight = (int) (DESIGN_BOTTOM_HEIGHT * ratio);
	cellHeight = (screenWidth - sepLineWidth * 3) / 4;
	if (plats.size() <= lineSize) {
		panelHeight = cellHeight + sepLineWidth;
	} else if (plats.size() <= PAGE_SIZE_P - lineSize) {
		panelHeight = (cellHeight + sepLineWidth) * 2;
	} else {
		panelHeight = (cellHeight + sepLineWidth) * 3;
	}
}
 
开发者ID:6ag,项目名称:LiuAGeAndroid,代码行数:20,代码来源:PlatformPageAdapterPort.java

示例2: calculateSize

import com.mob.tools.utils.ResHelper; //导入方法依赖的package包/类
protected void calculateSize(Context context, ArrayList<Object> plats) {
	int screenWidth = ResHelper.getScreenWidth(context);
	float ratio = ((float) screenWidth) / DESIGN_SCREEN_WIDTH_L;
	int cellWidth = (int) (DESIGN_CELL_WIDTH_L * ratio);
	lineSize = screenWidth / cellWidth;

	sepLineWidth = (int) (DESIGN_SEP_LINE_WIDTH * ratio);
	sepLineWidth = sepLineWidth < 1 ? 1 : sepLineWidth;
	logoHeight = (int) (DESIGN_LOGO_HEIGHT * ratio);
	paddingTop = (int) (DESIGN_PADDING_TOP * ratio);
	bottomHeight = (int) (DESIGN_BOTTOM_HEIGHT * ratio);
	cellHeight = (screenWidth - sepLineWidth * 3) / (lineSize - 1);
	panelHeight = cellHeight + sepLineWidth;
}
 
开发者ID:starryxp,项目名称:LQRWeChat-master,代码行数:15,代码来源:PlatformPageAdapterLand.java

示例3: getRatio

import com.mob.tools.utils.ResHelper; //导入方法依赖的package包/类
protected float getRatio() {
	float screenWidth = ResHelper.getScreenWidth(activity);
	return screenWidth / DESIGN_SCREEN_WIDTH;
}
 
开发者ID:gaolhjy,项目名称:cniao5,代码行数:5,代码来源:FriendListPageLand.java


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