如何在CoordinatorLayout下的AppBarLayout下面添加一个ImageView?

时间:2016-11-30 15:47:37

标签: android android-layout android-imageview android-coordinatorlayout android-appbarlayout

我通过添加android:layout_marginTop="112dp"实现了这一点,是否还有其他方法可以将我的ImageView放在AppBarLayout下方,就像我们在RelativeLayout中一样?

此外,我希望此ImageView具有与AppBarLayout相同的投影,因此图像将显示为AppBarLayout的一部分。

我希望TextView显示在LinearLayout中的图片下方。

主要活动XML

<android.support.design.widget.AppBarLayout
    android:id="@+id/appbar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:paddingTop="@dimen/appbar_padding_top"
    android:theme="@style/AppTheme.AppBarOverlay">

    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="?attr/colorPrimary"
        app:layout_scrollFlags="scroll|enterAlways"
        app:popupTheme="@style/AppTheme.PopupOverlay">

    </android.support.v7.widget.Toolbar>

    <android.support.design.widget.TabLayout
        android:id="@+id/tabs"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />

</android.support.design.widget.AppBarLayout>

<LinearLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginTop="112dp"
    android:orientation="horizontal">

    <ImageView
        android:layout_width="200dp"
        android:layout_height="200dp"
        android:src="@drawable/under_tabs_triangle"/>
</LinearLayout>

<android.support.v4.view.ViewPager
    android:id="@+id/container"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:layout_behavior="@string/appbar_scrolling_view_behavior" />

<android.support.design.widget.FloatingActionButton
    android:id="@+id/fab"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="end|bottom"
    android:layout_margin="@dimen/fab_margin"
    app:srcCompat="@android:drawable/ic_dialog_email" />

片段主XML

<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="match_parent"
tools:context="com.example.dexbyte.player.MainActivity$PlaceholderFragment">

<TextView
    android:id="@+id/section_label"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" />

请检查此图片:

enter image description here

1 个答案:

答案 0 :(得分:0)

  

此外,我希望此ImageView具有与   AppBarLayout具有,因此图像将作为   AppBarLayout。

可以通过在其中添加CardViewImageView或其他方式来实现此目的,但是,如果要使两者都有阴影,则可能需要删除{{ 1}}阴影,因为AppBarLayoutImageView之间会有阴影,看起来不太好。

  

我希望AppBarLayout出现在TextView中的图像下方。

LinearLayout实际上显示在正确的位置,因为您已添加:

TextView

app:layout_behavior="@string/appbar_scrolling_view_behavior" 。所以,一切都很好。要实现您想要的目标,您可以添加:

ViewPager

完成android:layout_marginTop="30dp" <!-- Or more ... -->