我通过添加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" />
请检查此图片:
答案 0 :(得分:0)
此外,我希望此ImageView具有与 AppBarLayout具有,因此图像将作为 AppBarLayout。
可以通过在其中添加CardView
和ImageView
或其他方式来实现此目的,但是,如果要使两者都有阴影,则可能需要删除{{ 1}}阴影,因为AppBarLayout
和ImageView
之间会有阴影,看起来不太好。
我希望
AppBarLayout
出现在TextView
中的图像下方。
LinearLayout
实际上显示在正确的位置,因为您已添加:
TextView
到app:layout_behavior="@string/appbar_scrolling_view_behavior"
。所以,一切都很好。要实现您想要的目标,您可以添加:
ViewPager
完成android:layout_marginTop="30dp" <!-- Or more ... -->
。