我正在制作一款基本上具有以下结构的Android应用程序。
<LinearLayout 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:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="com.example.android.mortgagecalc.MainActivity">
<FrameLayout
android:id="@+id/tab"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1">
</FrameLayout>
<android.support.design.widget.BottomNavigationView
android:id="@+id/navigation"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:background="?android:attr/windowBackground"
app:menu="@menu/navigation" />
</LinearLayout>
现在BottomNavigationView
使用下面的代码在两个片段之间切换。
if(fragment_id == FRAGMENT1) {
FragmentTransaction ft = fm.beginTransaction();
ft.replace(R.id.tab, new Fragment1(), "active");
ft.commit();
} else if(fragment_id == FRAGMENT2) {
FragmentTransaction ft = fm.beginTransaction();
ft.replace(R.id.tab, new Fragment2(), "active");
ft.commit();
} else {
FragmentTransaction ft = fm.beginTransaction();
ft.add(R.id.tab, new Fragment1(), "active");
ft.commit();
}
现在Fragment2
低于布局的XML
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<com.sothree.slidinguppanel.SlidingUpPanelLayout
xmlns:sothree="http://schemas.android.com/apk/res-auto"
android:id="@+id/sliding_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="bottom"
sothree:umanoPanelHeight="68dp"
sothree:umanoShadowHeight="4dp">
<include
android:layout_width="match_parent"
android:layout_height="match_parent"
layout="@layout/fragment2_map_layout"
/>
<include
android:layout_width="match_parent"
android:layout_height="match_parent"
layout="@layout/fragment2_list_layout"
/>
</com.sothree.slidinguppanel.SlidingUpPanelLayout>
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="Fragment2 List"/>
</LinearLayout>
现在,在fragment2_map_layout.xml
内,我想添加一个谷歌地图,让我添加自定义标记。我尝试过在线提供的所有不同方式。并且一直有例外和错误。
有人可以建议如何在这样的项目结构中添加地图吗?
可以在https://github.com/keyurgolani/MortgageCalc找到完整的代码供参考。