在两个已经具有高程

时间:2016-09-25 10:26:58

标签: android android-layout

<android.support.design.widget.CoordinatorLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent">
<android.support.v7.widget.CardView
    android:layout_width="130dp"
    android:layout_height="130dp"
    app:cardCornerRadius="65dp"
    android:layout_gravity="center_horizontal"
    android:layout_marginTop="-105dp"
    android:clipChildren="true"
    app:cardElevation="10dp">
    <ImageView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:src="@drawable/pic"
        android:scaleType="centerCrop"/>
</android.support.v7.widget.CardView>
<TextView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="Raven Starfire"
    android:textColor="#FFFFFF"
    android:gravity="center_horizontal"
    android:layout_marginTop="155dp"
    android:textAppearance="?android:textAppearanceLarge"/>
    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Bran, Romania"
        android:textColor="#FFFFFF"
        android:gravity="center_horizontal"
        android:layout_marginTop="180dp"
        android:textAppearance="?android:textAppearanceSmall"/>
<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="60dp"
    android:background="#90A4AE"
    android:layout_gravity="bottom"
    android:orientation="vertical"
    android:id="@+id/bottomTopCard"
    android:elevation="19dp"></LinearLayout>
    <android.support.design.widget.FloatingActionButton
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:layout_anchor="@id/bottomTopCard"
        app:layout_anchorGravity="top|right"
        android:layout_marginRight="16dp"/>
</android.support.design.widget.CoordinatorLayout>

enter image description here

好吧,我需要将“浮动动作”按钮置于协调器布局底部的线性布局(较浅的灰色阴影)上方。我将锚设置到线性布局的右上端(工作正常),但FAB似乎已经低于它。 我认为协调器布局不像FrameLayout / CardView那样工作。提升高度并不会使FAB高于线性布局。

任何关于将FAB置于线性布局之上的建议都会有所帮助。

谢谢你的回答。布局现在就像这样, enter image description here

1 个答案:

答案 0 :(得分:1)

从应用程序命名空间设置浮动操作按钮高程而不是android:

ui_action_and_signals

    app:elevation="20dp"

顺便说一句,android材质设计建议FAB在6dp高程 https://material.google.com/material-design/elevation-shadows.html