我刚开始在我的Android应用程序中使用Snackbar而且我无法让ScrollView变得更小,因为它不会覆盖ScrollView内部的任何内容。
这是我的活动的xml布局:
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
android:id="@+id/container"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/colorBackground"
tools:context="com.example.MainActivity">
<ScrollView
android:id="@+id/scrollview"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="8dp"
android:layout_marginLeft="8dp"
android:layout_marginRight="8dp"
android:layout_marginTop="16dp"
android:orientation="vertical">
[LOT OF ELEMENTS IN HERE]
</LinearLayout>
</ScrollView>
</android.support.constraint.ConstraintLayout>
我在StackOverflow上尝试了很多解决方案,但是对我来说没有任何效果。
答案 0 :(得分:6)
我的猜测是,对您来说最好的解决方案是实现page中指定的CoordinatorLayout
,如果您在链接中看到GIF格式,则可以看到动画如何当SnackBar被触发时浮动Botton引发,尝试替换ScrollView元素的教程的浮动按钮,我想可以工作(无论如何,ScrollView应该在其他属性之上......)
如果不起作用 可能你想扩展ScrollView并覆盖你需要的方法,如google official文档中所述,这应该始终有效,但你需要多做一些工作。这两个解决方案中的一个应该可以成功。< / p>
答案 1 :(得分:0)
所以,我找到了解决问题的方法,这就是解决方案。
我已在活动的布局xml文件中将ConstraintLayout
替换为android.support.design.widget.CoordinatorLayout
。
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
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:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/colorBackground"
tools:context="com.example.MainActivity">
<ScrollView
android:id="@+id/scrollview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_behavior="com.example.DecreaseHeightBehavior">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="8dp"
android:layout_marginLeft="8dp"
android:layout_marginRight="8dp"
android:layout_marginTop="16dp"
android:orientation="vertical">
[ELEMENTS HERE]
</LinearLayout>
</ScrollView>
</android.support.design.widget.CoordinatorLayout>
我创建了一个类DecreaseHeightBehavior,如下所示:
package com.example;
import android.content.Context;
import android.support.annotation.Keep;
import android.support.design.widget.CoordinatorLayout;
import android.support.design.widget.Snackbar;
import android.util.AttributeSet;
import android.view.View;
import android.view.ViewGroup;
import static android.view.ViewGroup.LayoutParams.MATCH_PARENT;
@Keep
public class DecreaseHeightBehavior extends CoordinatorLayout.Behavior<View>{
public DecreaseHeightBehavior(){
super();
}
public DecreaseHeightBehavior(Context context, AttributeSet attrs){
super(context, attrs);
}
@Override
public boolean layoutDependsOn(CoordinatorLayout parent, View child, View dependency){
return dependency instanceof Snackbar.SnackbarLayout;
}
@Override
public boolean onDependentViewChanged(CoordinatorLayout parent, View child, View dependency){
ViewGroup.LayoutParams layoutParams = child.getLayoutParams();
layoutParams.height = parent.getHeight() - dependency.getHeight();
child.setLayoutParams(layoutParams);
return true;
}
@Override
public void onDependentViewRemoved(CoordinatorLayout parent, View child, View dependency){
ViewGroup.LayoutParams layoutParams = child.getLayoutParams();
layoutParams.height = MATCH_PARENT;
child.setLayoutParams(layoutParams);
}
}
这对我有用,但这个解决方案并没有动画ScrollView的高度。