我正面临一个我无法解决的问题。如果有人可以为我提供快速解决方案,那将使我过得愉快。 如您在附图中所见,FrameLayout不在AppBar下方。我正在使用FrameLayout作为Fragments的容器。所以我想实现的是FrameLayout就在AppBar的正下方。我想我可以勉强做到这一点,但我认为这不是正确的解决方案。 最好的问候,并在此先感谢。
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout 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:fitsSystemWindows="true"
tools:context="com.mbcs.MainActivity">
<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>
<FrameLayout
android:id="@+id/fragment_container"
android:layout_width="match_parent"
android:layout_height="match_parent">
</FrameLayout>
</android.support.design.widget.CoordinatorLayout>
答案 0 :(得分:0)
尝试使用lines = file.readlines()
代替
RelativeLayout