gpt4 book ai didi

java - 将工具栏移动到相关布局的顶部

转载 作者:行者123 更新时间:2023-12-02 04:54:09 25 4
gpt4 key购买 nike

我试图将按钮放在中间,但将工具栏保留在顶部。目前,由于重力“center”,两者都位于中间。

有没有办法在不使用填充属性的情况下做到这一点?否则在其他屏幕尺寸上看起来会有所不同。

这是我的main_activity:

<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_gravity="center">

<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:minHeight="?attr/actionBarSize"
android:background="#2196F3"
android:layout_width="match_parent"
android:layout_height="wrap_content"
xmlns:android="http://schemas.android.com/apk/res/android">

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

<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="New Button"
android:id="@+id/button"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true" />


</RelativeLayout>

最佳答案

很简单,改成这样:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="match_parent" >

<android.support.v7.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:background="#2196F3"
android:minHeight="?attr/actionBarSize" >
</android.support.v7.widget.Toolbar>

<Button
android:id="@+id/button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerInParent="true"
android:text="New Button" />

</RelativeLayout>

关于java - 将工具栏移动到相关布局的顶部,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28942397/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com