@Keep @SuppressWarnings("unused") // Instantiated reflectively from layout XML.
public DrawerBehavior(Context context, AttributeSet attrs) {
super(context, attrs);
TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.DrawerBehavior);
int gravity =
a.getInteger(R.styleable.DrawerBehavior_android_layout_gravity, GravityCompat.END);
a.recycle();
validateGravity(gravity);
this.gravity = gravity;
}
DrawerBehavior.java 文件源码
java
阅读 32
收藏 0
点赞 0
评论 0
项目:DrawerBehavior
作者:
评论列表
文章目录