Я хочу оставить кнопку внизу экрана «Активность».Это должно быть исправлено независимо от размера прокрутки над ним.Проблема в том, что, как только текстовые просмотры прокрутки занимают какое-то место, высота моей кнопки продолжает уменьшаться, и в итоге она выталкивается из экрана активности.Это макет, который я использую.
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:orientation="vertical">
<TextView android:id="@+id/tvBanner" android:layout_width="fill_parent"
android:layout_height="wrap_content" android:layout_alignParentLeft="true"
android:layout_alignParentTop="true" android:gravity="center"
android:text="Practice Exam" />
<ScrollView android:id="@+id/Scroll" android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout android:id="@+id/LinearLayout1"
android:layout_width="match_parent" android:layout_height="wrap_content"
android:orientation="vertical">
<TextView android:id="@+id/tvDesc" android:layout_width="fill_parent"
android:layout_height="wrap_content" android:layout_margin="10dp"
android:gravity="center" android:paddingTop="40dp" android:text="@string/welcom"
android:textSize="20sp" />
<TextView android:id="@+id/tvURL" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_marginBottom="30dp"
android:paddingTop="10dp" android:layout_gravity="center"
android:text="hello" android:textColor="@android:color/white"
android:typeface="sans" />
</LinearLayout>
</ScrollView>
<RelativeLayout android:layout_width="fill_parent"
android:layout_height="fill_parent" android:gravity="bottom">
<Button android:id="@+id/btBottom" android:layout_width="fill_parent"
android:layout_height="wrap_content" android:layout_weight="1"
android:text="Enter" />
</RelativeLayout>
</LinearLayout>
Я также пытался использовать android: weight = 1 и android: layout_height = 0dp в Scrollview.Но это удаляет всю часть Scrollview из моей деятельности, и я ничего не вижу.
Я знаю, что по этому поводу задано много похожих вопросов, и поверьте мне, я пробовал многие из них.Однако ни один из приемов не сработал для меня.Я потратил почти полдня, чтобы исправить это.Пожалуйста, помогите.