Skip to content Skip to sidebar Skip to footer

Android Game Produces Blank Screen When I Add New View To View Group

I am trying to have multiple views for my game so I created a view group and currently only have one and when I run the program I get a blank screen here is the code for my Game Vi

Solution 1:

Try putting addView inside your Activity.

If you need to append a View more than once, just call addView more than once. Note that ViewGroup is an abstract class, so it may be quicker for you to simply use a LinearLayout to append your views to instead. LinearLayout is itself a ViewGroup.

Try out my suggestion, if you get stuck somewhere, please post the code of your new activity on here (please don't post your old activity), and tell us why you think you're getting stuck.

For anyone else reading this, if you need more context, please see this original question that someone else asked him to split into two.

Post a Comment for "Android Game Produces Blank Screen When I Add New View To View Group"