フラグメント内に mapview バージョン 1 を実装する方法はありますか? 私は次のように試しました:
主な活動:
public class MainActivity extends FragmentActivity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
}
では、フラグメントが 2 つ必要です。1 つはマップビューを持ち、もう 1 つは場所が表示されるテキストビューを持ちます。
最初のフラグメントを実装できません。マップの実装方法がわかりません。つまり、mapview が機能するには、「MapActivity の拡張」が必要ですが、「フラグメントの拡張」が必要です。
また、main.xmlでそれを行う方法は?私は試しました:
<fragment
class="com.google.android.maps.MapView"
android:name="com.example.....MapClass" //is this right?but it is necessary for fragment?
android:id="@+id/fragment1"
android:layout_weight="1"
android:layout_width="0px"
android:layout_height="match_parent"
android:apiKey="mykey" />
<fragment
class="com.example...getloclass"
android:id="@+id/fragment2"
android:layout_weight="1"
android:layout_width="0px"
android:layout_height="match_parent" />