programacion - manual de android en pdf
Agregar vista de imagen al diseƱo (2)
RelativeLayout rl = (RelativeLayout)findViewById(R.id.id_of_your_relative_layout_here);
ImageView iv = new ImageView(this)
iv.setImageResource(R.drawable.some_drawable_of_yours); //or iv.setImageDrawable(getResources().getDrawable(R.drawable.some_drawable_of_yours));
rl.addView(iv);
Quiero crear una vista de imagen desde el código y agregarla al diseño ... Pero no uso el diseño de configuración en código. Tengo RelativeLayout en xml y uso ese setContentView(R.layout.activity_game);
¿Cómo agregar imageview al diseño?
El XML debe ser:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:id="@+id/relativeblablabla"
android:layout_width="match_parent"
android:layout_height="match_parent">
...........YOUR CODE HERE............
</RelativeLayout>
El código (dentro de onCreate):
RelativeLayout rl = (RelativeLayout)findViewById(R.id.relativeblablabla);
ImageView imageView = new ImageView (this);
iv.setImageResource(R.drawable.YOUR_IMAGE);
rl.addView(imageView);