Problems with positioning textView under another textView in relative layout?

You need android:layout_below="@id/tv1 in your TextView for numbers.

You need android:layout_below="@id/tv1" in your TextView for numbers.

In your second TextView add android:layout_below="@id/tv1.

You're using a relative layout, but you're not telling the second TextView what to be positioned relative to. Add this to your second TextView: android:layout_below:"@+id/tv1.

Also you can tell your TextView to fill_parent and then set gravity=center on it. So it'll center actual text within textView. This is about the same as http://stackoverflow.com/questions/2990882.

If you look at my answer, it has a full example of how to make this layout work. Android:layout_gravity="center_horizontal" as an attribute on the TextView in question. Terms of service.

Not the answer you're looking for?

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions