I\'m having a hard time getting two text views to appear on top of each other in my java code. Here\'s the code I\'m experimenting with:
/** Called when the
Your TextViews don't have an id (by default the id is -1)... put this after their initialization:
TextViews
-1
text1.setId(1111); // 1111 is just an example, text2.setId(2222); // just make sure the id are unique