ImageView将其从屏幕中心(或工具栏中心?)的位置更改为工具栏的左侧,我构思了下面的布局和粘贴。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<View
android:id="@+id/background"
android:layout_width="match_parent"
android:layout_height="100dp"
android:background="?attr/colorPrimary"/>
<ImageView
android:layout_width="80dp"
android:layout_height="80dp"
android:layout_centerHorizontal="true"
android:layout_margin="60dp"
android:background="@android:color/white"
android:elevation="10dp"/>
<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/background">
<android.support.v7.widget.Toolbar
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"/>
</android.support.design.widget.AppBarLayout>
<android.support.v4.widget.NestedScrollView
android:layout_below="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="@string/long_string"/>
</android.support.v4.widget.NestedScrollView>
</RelativeLayout>
在我对android Animation的有限经验中,视图的动画与滚动无关,所以我想象一种使用scrollListener来设置backgroundView的高度和Imageview&amp;的距离的方法。工具栏的左侧。
想要知道这样做是否是一种好习惯,哪种方法更好?tks。