Как сделать статический TextView поверх ImageButton в ScrollView? - PullRequest
0 голосов
/ 01 марта 2019
        <ImageButton
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:src="@drawable/busfoto2" />

    </LinearLayout>
</ScrollView>

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Bus Locations"
    app:layout_constraintRight_toRightOf="parent"
    app:layout_constraintLeft_toLeftOf="parent"/>

Я пытался, но текст все еще движется, когда я прокручиваю экран, я хочу исправить это на определенной кнопке ImageButton

1 Ответ

0 голосов
/ 01 марта 2019

Поместите Button и TextView в FrameLayout следующим образом:

    <FrameLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

<ImageButton
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:src="@drawable/busfoto2"/>

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Bus Locations"/></FrameLayout>
...