如何在自定义工具栏下放置按钮,edittext等

时间:2019-02-05 06:25:49

标签: c# xamarin.android android-toolbar

我创建了一个自定义工具栏。但是,当我放置诸如imageview,button等之类的东西时,它不会在工具栏下方。我也尝试了android:layout_below,但我要么无法正常工作,要么我输入了错误的ID(我尝试了多个ID)。它只是与工具栏混在一起。

在代码中,imageview与工具栏合并,我希望imageview在其下方。

感谢所有回答的人

代码:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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/list"
    android:layout_width="match_parent"
    android:layout_height="match_parent">



    <include
        android:id="@+id/toolbar"
        layout="@layout/toolbar" />


    <ImageView
    android:id="@+id/icon"
    android:layout_below="@id/toolbar"
    android:layout_alignParentTop="true"
    android:layout_centerHorizontal="true"
    android:background="@drawable/shoppingcart"
    android:layout_width="100dp"
    android:layout_height="100dp"
/>
<android.support.design.widget.TextInputLayout
    android:layout_below="@+id/icon"
    android:id="@+id/forgot_input_email"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">
    <EditText
        android:id="@+id/forgot_email"
        android:hint="Enter groceries"
        android:inputType="textCapWords"
        android:maxLines="1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"

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

P.s。 包括只是正常的工具栏设置

1 个答案:

答案 0 :(得分:1)

我得到了答案!我不得不戴上图像视图标签android:layout_marginTop =“?attr / actionBarSize”,它只是在工具栏/ actionbar的高度以下进行操作,像这样:

<ImageView
android:layout_marginTop="?attr/actionBarSize"
android:id="@+id/icon"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:background="@drawable/shoppingcart"
android:layout_width="100dp"
android:layout_height="100dp"