我的应用程序底部导航有三个选项卡。在应用程序的一个屏幕上,我有一个谷歌地图片段。我希望仅在此屏幕的地图片段下方和底部导航上方显示三个按钮。
当我在这个特定片段的设计者中时,它显示了我想要的东西(这里灰色的“片段”实际上是谷歌地图片段)
您可以从github:https://github.com/guyprovost/BottomBug/tree/master下载代码
但是当我运行应用程序时,这就是我得到的:
我瞄准了这个最终结果,(对于想要的结果的糟糕描述而感到抱歉,但是你明白了!)
这是片段布局:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<fragment
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
class="com.google.android.gms.maps.MapFragment"
android:layout_marginTop="24dp" />
<LinearLayout
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/controlBar"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:background="@color/primaryDark"
android:gravity="bottom">
<Button
android:id="@+id/testbutton1"
android:text="One"
android:layout_width = "wrap_content"
android:layout_height = "wrap_content"
android:layout_weight=".30"/>
<Button
android:id="@+id/testbutton2"
android:text="Two"
android:layout_width = "wrap_content"
android:layout_height = "wrap_content"
android:layout_weight=".40" />
<Button
android:id="@+id/testbutton3"
android:text="Three"
android:layout_width = "wrap_content"
android:layout_height = "wrap_content"
android:layout_weight=".30" />
</LinearLayout>
这是主要的活动布局文件:
<?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"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent">
<FrameLayout
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@+id/bottom_navigation" />
<android.support.design.widget.BottomNavigationView
android:id="@+id/bottom_navigation"
android:layout_width="match_parent"
android:layout_height="56dp"
android:layout_gravity="start"
android:layout_alignParentBottom="true"
android:background="@android:color/white"
app:elevation="16dp"
app:menu="@menu/bottom_navigation_main" />
</RelativeLayout>
这里是底部导航菜单xml文件内容:
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<item
android:id="@+id/menu_map"
android:enabled="true"
android:icon="@drawable/ic_map"
android:title="@string/tab1_title"
app:showAsAction="ifRoom" />
<item
android:id="@+id/menu_history"
android:enabled="true"
android:icon="@drawable/ic_history"
android:title="@string/tab2_title"
app:showAsAction="ifRoom" />
<item
android:id="@+id/menu_settings"
android:enabled="true"
android:icon="@drawable/ic_settings"
android:title="@string/tab3_title"
app:showAsAction="ifRoom" />
</menu>
我看起来无论是地图碎片高度在运行时都无法正确操作,或者它不能像底层导航布局那样使用......或者我在某处闷闷不乐,这是非常可能的。
有线索吗?
如果我正确理解你的查询然后让我给你一个解决方案,你可以使用相对布局而不是像下面的线性布局,也让我告诉你,我知道你需要在主要活动中的导航视图,你需要三个导航视图顶部的按钮,您需要地图片段。对?所以这是解决方案:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<fragment
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:layout_above="@+id/controlBar"
class="com.google.android.gms.maps.MapFragment"
android:layout_marginTop="24dp" />
<LinearLayout
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/controlBar"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_alignParentBottom="true"
android:background="@color/primaryDark"
android:gravity="bottom">
<Button
android:id="@+id/testbutton1"
android:text="One"
android:layout_width = "wrap_content"
android:layout_height = "wrap_content"
android:layout_weight=".30"/>
<Button
android:id="@+id/testbutton2"
android:text="Two"
android:layout_width = "wrap_content"
android:layout_height = "wrap_content"
android:layout_weight=".40" />
<Button
android:id="@+id/testbutton3"
android:text="Three"
android:layout_width = "wrap_content"
android:layout_height = "wrap_content"
android:layout_weight=".30" />
</LinearLayout>
尝试这个我在手机上检查它,它正在工作
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<fragment
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
class="com.google.android.gms.maps.MapFragment"
android:layout_marginTop="24dp" />
<LinearLayout
android:id="@+id/controlBar"
android:layout_width="match_parent"
android:layout_height="100dp"
android:layout_weight="1"
android:orientation="horizontal"
android:background="@color/colorAccent"
android:gravity="bottom">
<Button
android:id="@+id/testbutton1"
android:text="One"
android:layout_width = "wrap_content"
android:layout_height = "wrap_content"
android:layout_weight=".30"/>
<Button
android:id="@+id/testbutton2"
android:text="Two"
android:layout_width = "wrap_content"
android:layout_height = "wrap_content"
android:layout_weight=".40" />
<Button
android:id="@+id/testbutton3"
android:text="Three"
android:layout_width = "wrap_content"
android:layout_height = "wrap_content"
android:layout_weight=".30" />
</LinearLayout>
</LinearLayout>
activity_main
<?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"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent">
<FrameLayout
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@+id/bottom_navigation" />
<android.support.design.widget.BottomNavigationView
android:id="@+id/bottom_navigation"
android:layout_width="match_parent"
android:layout_height="56dp"
android:layout_gravity="start"
android:layout_alignParentBottom="true"
android:background="@android:color/white"
app:elevation="16dp"
app:menu="@menu/navigation" />
</RelativeLayout>