我正在使用viewPager中的地图开发应用程序,我按照此answer的第二部分进行操作,并且每件事情都可以。 现在我需要视图用按钮映射。
这是.xml代码
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
android:orientation="vertical">
<fragment xmlns:android="http://schemas.android.com/apk/red/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/map"
android:layout_height="match_parent"
android:layout_weight="0.1"
android:layout_width="match_parent"
android:name="com.google.android.gms.maps.SupportMapFragment"
tools:context="com.developers.redfinger.mymap.MainMapActivity"></fragment>
<Button
android:id="@+id/bAdd"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="0.9"
android:paddingTop="5dp"
android:text="Add Place"
android:textSize="28dp" />
</LinearLayout>
当我覆盖onCreatView()
作为定义按钮的答案的第一部分时,不幸停止,请提供任何帮助。