本文整理汇总了Java中com.taobao.weex.utils.WXViewUtils.getWeexHeight方法的典型用法代码示例。如果您正苦于以下问题:Java WXViewUtils.getWeexHeight方法的具体用法?Java WXViewUtils.getWeexHeight怎么用?Java WXViewUtils.getWeexHeight使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.taobao.weex.utils.WXViewUtils
的用法示例。
在下文中一共展示了WXViewUtils.getWeexHeight方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: measure
import com.taobao.weex.utils.WXViewUtils; //导入方法依赖的package包/类
@Override
protected MeasureOutput measure(int width, int height) {
MeasureOutput measureOutput = new MeasureOutput();
if (this.mOrientation == Constants.Orientation.HORIZONTAL) {
int screenW = WXViewUtils.getScreenWidth(WXEnvironment.sApplication);
int weexW = WXViewUtils.getWeexWidth(getInstanceId());
measureOutput.width = width > (weexW >= screenW ? screenW : weexW) ? FrameLayout.LayoutParams.MATCH_PARENT
: width;
measureOutput.height = height;
} else {
int screenH = WXViewUtils.getScreenHeight(WXEnvironment.sApplication);
int weexH = WXViewUtils.getWeexHeight(getInstanceId());
measureOutput.height = height > (weexH >= screenH ? screenH : weexH) ? FrameLayout.LayoutParams.MATCH_PARENT
: height;
measureOutput.width = width;
}
return measureOutput;
}
示例2: measure
import com.taobao.weex.utils.WXViewUtils; //导入方法依赖的package包/类
/**
* Measure the size of the recyclerView.
*
* @param width the expected width
* @param height the expected height
* @return the result of measurement
*/
@Override
protected MeasureOutput measure(int width, int height) {
int screenH = WXViewUtils.getScreenHeight(WXEnvironment.sApplication);
int weexH = WXViewUtils.getWeexHeight(getInstanceId());
int outHeight = height > (weexH >= screenH ? screenH : weexH) ? weexH - mAbsoluteY : height;
return super.measure(width, outHeight);
}
示例3: measure
import com.taobao.weex.utils.WXViewUtils; //导入方法依赖的package包/类
/**
* Measure the size of the recyclerView.
*
* @param width the expected width
* @param height the expected height
* @return the result of measurement
*/
@Override
protected MeasureOutput measure(int width, int height) {
int screenH = WXViewUtils.getScreenHeight(WXEnvironment.sApplication);
int weexH = WXViewUtils.getWeexHeight(getInstanceId());
int outHeight = height > (weexH >= screenH ? screenH : weexH) ? weexH - getAbsoluteY() : height;
return super.measure((int)(width+mColumnGap), outHeight);
}
示例4: measure
import com.taobao.weex.utils.WXViewUtils; //导入方法依赖的package包/类
/**
* Measure the size of the recyclerView.
*
* @param width the expected width
* @param height the expected height
* @return the result of measurement
*/
@Override
protected MeasureOutput measure(int width, int height) {
int screenH = WXViewUtils.getScreenHeight(WXEnvironment.sApplication);
int weexH = WXViewUtils.getWeexHeight(getInstanceId());
int outHeight = height > (weexH >= screenH ? screenH : weexH) ? weexH - getAbsoluteY() : height;
return super.measure(width, outHeight);
}