Hi i need to put some text over an imageview.
<ImageView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_gravity="center_vertical"
android:src="@drawable/bg"
/>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="TEST"
/>
But this doesnt displays the text only the picture. And also I have to rotated this text. Is this even possible with TextView?