1- If you want your Activity be full screen,do some thing like this:
public class ActivityName extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// remove title
requestWindowFeature(Window.FEATURE_NO_TITLE);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);
setContentView(R.layout.main);
}
}
(more details here)
2- If you want your ImageView be full screen,create instance of ImageView then set it as ContentView
of your Activity or create a layout that image view completely covers that and set that layout as ContentView
.