当动态文本太小而无法填满整个屏幕时,我在android:fillviewport="true"
中使用了xml
来移除屏幕底部的空白。
但是在我稍微更改了布局后,android:fillviewport="true"
不再起作用。这是我的xml
。我尝试在所有布局容器上几乎都使用fillviewport
,但没有成功。下面的Fillviewport
在Scrollview
下。
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
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"
tools:context="com.nollvision.slothmode.nollvision.DetailActivity2">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/colorPrimary"
android:backgroundTint="@color/colorPrimaryDark"
android:elevation="5dp"
android:minHeight="?attr/actionBarSize"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" />
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true">
<android.support.constraint.ConstraintLayout
android:id="@+id/detail2_background"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/colorPrimary">
<all the children and the closing tags etc etc etc...