03.12.2012 Views

3D with OpenGL - 안드로이드 기술 커뮤니티 : Korea Android

3D with OpenGL - 안드로이드 기술 커뮤니티 : Korea Android

3D with OpenGL - 안드로이드 기술 커뮤니티 : Korea Android

SHOW MORE
SHOW LESS

Create successful ePaper yourself

Turn your PDF publications into a flip-book with our unique Google optimized e-Paper software.

2D Graphics<br />

LinearLayout mLinearLayout;<br />

protected void onCreate(Bundle savedInstanceState) {<br />

}<br />

super.onCreate(savedInstanceState);<br />

// Create a LinearLayout in which to add the ImageView<br />

mLinearLayout = new LinearLayout(this);<br />

// Instantiate an ImageView and define its properties<br />

ImageView i = new ImageView(this);<br />

i.setImageResource(R.drawable.my_image);<br />

i.setAdjustViewBounds(true); // set the ImageView bounds to match the Drawable's dimensions<br />

i.setLayoutParams(new Gallery.LayoutParams(LayoutParams.WRAP_CONTENT,<br />

LayoutParams.WRAP_CONTENT));<br />

// Add the ImageView to the layout and set the layout as the content view<br />

mLinearLayout.addView(i);<br />

setContentView(mLinearLayout);<br />

<strong>Korea</strong> <strong>Android</strong> Community- www.kandroid.org<br />

24

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!