我使用的是导航抽屉,但是每次我在片段中放入某些内容时,操作栏都不尊重布局。

图片本身说明:

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

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);
}


}

最佳答案

使用自定义工具栏会带来一些后果。自定义工具栏具有高度,默认情况下其他元素不尊重高度,我们必须将其设置为padding或margin。在工具栏的高度上添加到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 - 应用程序主题( Action 栏)不尊重您的空间,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/38817628/

10-10 10:16