¿Cómo puedo establecer dinámicamente la gravedad?Android image view gravity
Bitmap bmp;
im = new ImageView (this);
bmp=getbmp(img);
im.setImageBitmap(bmp);
Ahora me gustaría poner la imagen en la parte superior. ¿Puedo hacerlo sin android:gravity
en main.xml?
EDIT:
main.xml
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:scrollbars="vertical"
>
</ScrollView>
tengo un diseño de marcos y agrego a ella la imagen, y luego el texto y me gusta la imagen de estar en la parte superior de la pantalla.
FrameLayout fm = new FrameLayout (this);
fm.addView(im);
fm.addView(fin); // fin = the text view
setContentView(fm);
Más información, por favor. Publica tu archivo de diseño. –
hecho la edición. – Teo
¿Hay alguna razón por la que no solo coloque ImageView en el archivo de diseño? –