为什么此文本字段和应用栏重叠?
Why this textfield and appbar overlap?
如何解决这个问题?这是屏幕:
这是我的 xml 片段:
<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=".Utenti.Profilo.ProfiloFragment">
<TextView
android:text="IL TUO PROFILO"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/textView3"
android:textStyle="normal|bold"
android:textSize="24sp"
android:layout_weight="1"
android:fontFamily="serif"
android:lineSpacingExtra="10sp"
android:textAllCaps="false"
android:gravity="center_horizontal"
android:layout_alignParentEnd="true"
android:layout_alignParentStart="true" />
<TextView
android:text="Le tue stanze:"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/textView3"
android:layout_alignParentStart="true"
android:layout_marginStart="14dp"
android:layout_marginTop="28dp"
android:id="@+id/tue_stanze"
android:textStyle="normal|italic"
android:textSize="18sp" />
<ListView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/tue_stanze"
android:layout_centerHorizontal="true"
android:layout_marginTop="19dp" />
我是第一次使用导航抽屉,我需要创建用于菜单的片段。
寻求帮助。
编辑:
这是我的 content_main xml:
<?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:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context="com.bfco.bocci.androhouse.MainActivity"
tools:showIn="@layout/app_bar_main">
EDIT2:我使用这个 "app_bar_main.xml" 包括 content_main:
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay" />
</android.support.design.widget.AppBarLayout>
<include layout="@layout/content_main" />
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|end"
android:layout_margin="@dimen/fab_margin"
android:src="@android:drawable/ic_dialog_email" />
这是我的 main.xml :
<?xml version="1.0" encoding="utf-8"?>
<include
layout="@layout/app_bar_main"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<FrameLayout
android:id="@+id/frame_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
</FrameLayout>
<android.support.design.widget.NavigationView
android:id="@+id/nav_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
android:fitsSystemWindows="true"
app:headerLayout="@layout/nav_header_main"
app:menu="@menu/activity_main_drawer" />
有点不清楚您的片段究竟包含在哪个容器中,但在此过程中的某个地方,您应该包含此属性
android:paddingTop="?attr/actionBarSize"
或
android:layout_marginTop="?attr/actionBarSize"
在适当的容器中。根据我在上面看到的内容,您可以简单地将它添加到上面发布的片段的根目录中:
<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:paddingTop="?attr/actionBarSize"
tools:context=".Utenti.Profilo.ProfiloFragment">
理想情况下,您会在更高级别处理它,但这个应该足以满足您的示例。
如何解决这个问题?这是屏幕:
这是我的 xml 片段:
<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=".Utenti.Profilo.ProfiloFragment">
<TextView
android:text="IL TUO PROFILO"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/textView3"
android:textStyle="normal|bold"
android:textSize="24sp"
android:layout_weight="1"
android:fontFamily="serif"
android:lineSpacingExtra="10sp"
android:textAllCaps="false"
android:gravity="center_horizontal"
android:layout_alignParentEnd="true"
android:layout_alignParentStart="true" />
<TextView
android:text="Le tue stanze:"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/textView3"
android:layout_alignParentStart="true"
android:layout_marginStart="14dp"
android:layout_marginTop="28dp"
android:id="@+id/tue_stanze"
android:textStyle="normal|italic"
android:textSize="18sp" />
<ListView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/tue_stanze"
android:layout_centerHorizontal="true"
android:layout_marginTop="19dp" />
我是第一次使用导航抽屉,我需要创建用于菜单的片段。
寻求帮助。
编辑: 这是我的 content_main xml:
<?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:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context="com.bfco.bocci.androhouse.MainActivity"
tools:showIn="@layout/app_bar_main">
EDIT2:我使用这个 "app_bar_main.xml" 包括 content_main:
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay" />
</android.support.design.widget.AppBarLayout>
<include layout="@layout/content_main" />
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|end"
android:layout_margin="@dimen/fab_margin"
android:src="@android:drawable/ic_dialog_email" />
这是我的 main.xml :
<?xml version="1.0" encoding="utf-8"?>
<include
layout="@layout/app_bar_main"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<FrameLayout
android:id="@+id/frame_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
</FrameLayout>
<android.support.design.widget.NavigationView
android:id="@+id/nav_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
android:fitsSystemWindows="true"
app:headerLayout="@layout/nav_header_main"
app:menu="@menu/activity_main_drawer" />
有点不清楚您的片段究竟包含在哪个容器中,但在此过程中的某个地方,您应该包含此属性
android:paddingTop="?attr/actionBarSize"
或
android:layout_marginTop="?attr/actionBarSize"
在适当的容器中。根据我在上面看到的内容,您可以简单地将它添加到上面发布的片段的根目录中:
<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:paddingTop="?attr/actionBarSize"
tools:context=".Utenti.Profilo.ProfiloFragment">
理想情况下,您会在更高级别处理它,但这个应该足以满足您的示例。