in Education by
I'm trying to overlay 2 ImageViews, one with the background and one with an animated (using AnimationDrawable). The animated frames are transparent PNGs. The problem is that when both images visible, the overlaid animation does not show. If I add a JPG as one of the frames, only when that frames comes in line it is displayed so my presumption is there is something wrong with transparent images. If I display only the animation without background image it show good. This is part of the code: AbsoluteLayout layout = new AbsoluteLayout(this); setContentView(layout); ImageView splash = new ImageView(this); splash.setImageResource(R.drawable.splashscreen); ImageView imageAnim = new ImageView(this); animation = new AnimationDrawable(); imageAnim.post(new Starter()); imageAnim.setImageDrawable(animation); layout.addView(splash, new AbsoluteLayout.LayoutParams(Global.Width, Global.Height, 0, 0)); layout.addView(imageAnim, new AbsoluteLayout.LayoutParams((int) (89 * Global.scaleX), (int) (68 * Global.scaleY), (int) (550 * Global.scaleX), (int) (413 * Global.scaleY))); imageAnim.bringToFront(); Thank you JavaScript questions and answers, JavaScript questions pdf, JavaScript question bank, JavaScript questions and answers pdf, mcq on JavaScript pdf, JavaScript questions and solutions, JavaScript mcq Test , Interview JavaScript questions, JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)

1 Answer

0 votes
by
Have you tried setting the background of your AbsoluteLayout instead of using a ImageView for the background? Thus instead of the code: AbsoluteLayout layout = new AbsoluteLayout(this); setContentView(layout); ImageView splash = new ImageView(this); splash.setImageResource(R.drawable.splashscreen); use this: AbsoluteLayout layout = new AbsoluteLayout(this); layout.setBackgroundDrawable(R.drawable.splashscreen); setContentView(layout);

Related questions

0 votes
    I'm trying to overlay 2 ImageViews, one with the background and one with an animated (using ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Feb 13, 2022 in Education by JackTerrance
0 votes
    which of these is not an image file format PNG GIF BMP DOCX Select the correct answer from above options...
asked Dec 19, 2021 in Education by JackTerrance
0 votes
    In my app the user manipulates a image, rotates, pinch, zoom etc. This is make within onDraw() ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Feb 18, 2022 in Education by JackTerrance
0 votes
    I'm a visual/UI designer working on a project/product which has been designed by another designer. This ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 2, 2022 in Education by JackTerrance
0 votes
    I want to make a button Go To Cart visible after adding a product into cart. But when page gets ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Jul 3, 2022 in Education by JackTerrance
0 votes
    I am working on an application that maintains a connection for several purposes, such as publishing an ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Mar 2, 2022 in Education by JackTerrance
0 votes
    i have this problem that i want to upload image on a server through multi-part form but its keep ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Jul 8, 2022 in Education by JackTerrance
0 votes
    i have this problem that i want to upload image on a server through multi-part form but its keep ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Jun 19, 2022 in Education by JackTerrance
0 votes
    So i want to save the RelativeLayout (360x360dp) into the phone as a picture. Here is the code ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked May 4, 2022 in Education by JackTerrance
0 votes
    I'm developing an Android app and I'm working on photo uploading to my rails server. If I upload ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Mar 2, 2022 in Education by JackTerrance
0 votes
    How to remove a image in imageview in android and also how to hide the entire image. Here I have ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Feb 27, 2022 in Education by JackTerrance
0 votes
    I am completely new with Android/Eclipse. I can't figure out how to add an image in the /res/ ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Feb 26, 2022 in Education by JackTerrance
0 votes
    I am completely new with Android/Eclipse. I can't figure out how to add an image in the /res/ ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Feb 26, 2022 in Education by JackTerrance
0 votes
    In our application, we need to transfer video, we are using Camera class to capture the buffer and send ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Jan 15, 2022 in Education by JackTerrance
0 votes
    I have a UICollection that shows a padlock on cells that locked to users who aren't logged in. ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Jun 16, 2022 in Education by JackTerrance
...