我使用以下代码在底部放置带有按钮的scrollview。
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/bg"
tools:context=".MainActivity">
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:text="@string/wishes"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textColor="@color/white"/>
</ScrollView>
<Button
android:id="@+id/btn"
android:layout_width="100dp"
android:layout_height="match_parent"
android:layout_alignParentRight="true"/>
</RelativeLayout>
按钮必须始终可见但按钮不可见,因为文本视图包含多行文本。
即使用户正在滚动,我怎样才能对其进行排序并让我的按钮始终可见?
答案 0 :(得分:0)
使用浮点按钮代替按钮。 这是代码快照:
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_action_plus_circle"
app:backgroundTint="#ffffff"
android:layout_marginLeft="@dimen/fab_margin"
android:layout_marginRight="@dimen/fab_margin"
android:layout_marginBottom="38dp"
android:layout_alignParentBottom="true"
android:layout_alignParentEnd="true"
android:layout_marginEnd="39dp" />