我想在我的谷歌地图活动中添加按钮,但我在运行时收到错误。
我想通过长按选择地图上的某个位置,并确认该位置是要选择的。
我按下复选框并将位置信息发送到另一个活动,但是在运行时创建复选框时出错。将创建文本视图,但不会在运行时创建复选框和按钮。
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<fragment
android:layout_marginTop="50dp"
android:id="@+id/haritafragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
class="com.google.android.gms.maps.SupportMapFragment" />
<TextView
android:layout_width="250dp"
android:layout_height="50dp"
android:id="@+id/txtViewAddress"/>
<CheckBox
android:layout_width="40dp"
android:layout_height="40dp"
android:layout_marginLeft="270dp"
android:id="@+id/cbGetAdress"
android:checked="false" />
</FrameLayout>
是否有人发现此代码可能会解决这个问题?