gpt4 book ai didi

java - 应用程序主题(操作栏)不尊重您的空间

转载 作者:行者123 更新时间:2023-12-01 09:37:00 25 4
gpt4 key购买 nike

我正在使用抽屉导航,但每次我在 fragment 中放置一些内容时,操作栏都不遵循布局。

图像本身说明:

enter image description here

fragment_main:

<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.leonel.picollo.MainFragment">

<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="MAIN"
android:padding="8dp"
android:textColor="#fff"
android:background="@color/colorPrimary"
android:textSize="28sp"
android:id="@+id/textView"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
/>

</RelativeLayout>

和 MainFragment.java :

package com.example.leonel.picollo;


import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;


public class MainFragment extends Fragment {


public MainFragment() {
// Required empty public constructor
}


@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Inflate the layout for this fragment
return inflater.inflate(R.layout.fragment_main, container, false);
}

}

最佳答案

使用自定义工具栏会产生一些后果。自定义工具栏有高度,其他元素默认不尊重它,我们必须设置它们的填充或边距。添加到工具栏高度上的RelativeLayout marginTop。

<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"
android:marginTop="?attr/actionBarSize" <!-- here is marginTop -->
tools:context="com.example.leonel.picollo.MainFragment">
</RelativeLayout>

关于java - 应用程序主题(操作栏)不尊重您的空间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38817628/

25 4 0