Java 类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, 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);
}
项目:AyoSunny
文件:GhostActivity.java
protected ZoomButton findZoomButton(int id){return (ZoomButton)this.findViewById(id);}