/**
* Basic constructor
*
* @param context context
*/
public SplitPaneLayout(final Context context)
{
super(context);
this.orientation = SplitPaneLayout.ORIENTATION_HORIZONTAL;
this.splitterPositionPercent = 0.5f;
this.splitterPosition = Integer.MIN_VALUE;
this.splitterDrawable = new PaintDrawable(SPLITTER_COLOR);
this.splitterDraggingDrawable = new PaintDrawable(SPLITTER_DRAG_COLOR);
}
SplitPaneLayout.java 文件源码
java
阅读 17
收藏 0
点赞 0
评论 0
项目:TreebolicLib
作者:
评论列表
文章目录