android.widget.ZoomButton的实例源码

项目:bVnc    文件ZoomControls.java   
public ZoomControls(Context context,AttributeSet attrs) {
    super(context,attrs);
    setFocusable(false);

    LayoutInflater inflater = (LayoutInflater) context
            .getSystemService(Context.LAYOUT_INFLATER_SERVICE);
    inflater.inflate(R.layout.zoom_controls,this,// we are the parent
            true);

    mZoomIn = (ZoomButton) findViewById(R.id.zoomIn);
    mZoomOut = (ZoomButton) findViewById(R.id.zoomOut);
    mZoomKeyboard = (ImageButton) findViewById(R.id.zoomKeys);
    showMenu  = (ImageButton) findViewById(R.id.showMenu);
}
项目:androidVNC    文件ZoomControls.java   
public ZoomControls(Context context,// we are the parent
            true);

    mZoomIn = (ZoomButton) findViewById(R.id.zoomIn);
    mZoomOut = (ZoomButton) findViewById(R.id.zoomOut);
    mZoomKeyboard = (ImageButton) findViewById(R.id.zoomKeys);
}
项目:AyoSunny    文件GhostActivity.java   
protected ZoomButton findZoomButton(int id){return (ZoomButton)this.findViewById(id);}

相关文章

买水果
比较全面的redis工具类
gson 反序列化到多态子类
java 版本的 mb_strwidth
JAVA 反转字符串的最快方法,大概比StringBuffer.reverse()性...
com.google.gson.internal.bind.ArrayTypeAdapter的实例源码...