工具栏顶部的空白区域。 Android,Java

时间:2020-07-20 09:15:35

标签: java android toolbar

我只是在我的应用程序中包含一个选项菜单,但是在我的一项活动中,它似乎创建了一个空白空间-谁能告诉我为什么? 它可以在同一应用程序的其他活动中工作,但不能在单个活动中工作。 我希望任何人都可以帮助:-)

public class GifsActivity extends OptionsMenu {

    private Toolbar toolbar;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_gifs);
        toolbar = findViewById(R.id.toolbar);
        setSupportActionBar(toolbar);

        ImageView gifImageView = (ImageView) findViewById(R.id.iv_gif);

        Glide.with(this)
                .load("http://i.imgur.com/Vth6CBz.gif")
                .asBitmap()
                .placeholder(R.drawable.ic_cloud_off_red)
                .error(R.drawable.ic_cloud_off_red)
                .into(gifImageView);
    }

}
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    xmlns:tools="http://schemas.android.com/tools"
    android:gravity="center_vertical"
    android:orientation="vertical"
    tools:context="com.example.examand1.GifsActivity">

    <include layout="@layout/toolbar_layout"
        />

    <ImageView
        android:id="@+id/iv_gif"
        android:layout_width="match_parent"
        android:layout_height="220dp" />

</RelativeLayout>

活动图片

1 个答案:

答案 0 :(得分:0)

从布局中删除android:gravity="center_vertical"。然后您的布局将如下所示:

    <?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">

    <include 
        android:id="@+id/include"
        layout="@layout/toolbar_layout"
        android:layout_height="wrap_content"
        android:layout_width="match_parent"/>

    <ImageView
        android:layout_below="@id/include"
        android:id="@+id/iv_gif"
        android:layout_width="match_parent"
        android:layout_height="220dp" />

</RelativeLayout>