Scrollviewを使用しない場合、ボタンが画面の下部に表示されます。しかし、Scrollviewを追加するとすぐに、ボタンは画面の最下部に表示されません。ボタンが最下部にある必要があります
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/create_account_view">
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<RelativeLayout
android:id="@+id/scrollview_wrapper"
android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_marginTop="0dp"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:layout_marginBottom="10dp"
android:lines="1"
android:gravity="center"
android:textSize="16sp"/>
</RelativeLayout>
</ScrollView>
</RelativeLayout>
なぜScrollViewを使用しているのですか?それ以上の要素はありますか? – vidulaJ
'RelativeLayout'の幅は' ScrollView'の内部にあるので、 'wrap_content'でオーバーライドされます。 – MohanadMohie
ボタンをスクロールビューの外に置きます。 – james