Posts by Vale • 2,919 points
153 posts
-
1
votes2
answers5781
viewsQ: How to configure an image in Imageview so that it takes the entire screen of the phone
The following I declare normal to ImageView : <ImageView android:id="@+id/imageView1" android:layout_width="fill_parent" android:layout_height="fill_parent" android:src="@drawable/imagem"/>…
-
1
votes1
answer1571
viewsQ: How to leave imageView behind the buttons?
as the ramaral posted seven code: In your Activity Layout you must declare an Imageview If you want it to be only visible after pressing a button you should include the android:visibility="Invisible…
-
6
votes3
answers6396
viewsQ: How to display an image on the screen
I’m doubtful to display an image on the screen on android. example. to call a sound use the following code: Button button1; MediaPlyer mp; button1 = (Button)findViewById(R.id.button1);…