I'm wanting a TextView
to be positioned over a text, but it's on the side
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
android:background="@android:color/holo_green_light"
tools:context="com.example.tulio.myapplication.MainActivity">
<ImageView
android:id="@+id/imageView"
android:layout_width="100dp"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
app:srcCompat="@drawable/knuth_b"
tools:layout_editor_absoluteX="8dp"
tools:layout_editor_absoluteY="59dp" />
<TextView
android:id="@+id/txtNome2"
android:layout_width="wrap_content"
android:layout_height="39dp"
android:autoText="false"
android:padding="5dp"
android:text="Donald Knuth"
android:textColor="@android:color/holo_red_dark"
tools:layout_editor_absoluteX="16dp"
tools:layout_editor_absoluteY="31dp" />
<ScrollView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/imageView"
tools:layout_editor_absoluteY="280dp">
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="10dp"
android:text="@string/donald"
android:textSize="12sp"
tools:layout_editor_absoluteX="230dp"
tools:layout_editor_absoluteY="59dp" />
</ScrollView>
<![CDATA[
(Color.parseColor("#BABABA")); />
]]>
</LinearLayout>
I wanted Donald Knuth to stay on top of the text
UPDATEmanlookslikeitwas,DonaldKnuthwasunderneaththeimageandnotoverthetext