我需要通过获取当前位置在 CardView 内部使用 MapView。

您的回答更受赞赏。提前致谢...

android - 如何在 CardView 中显示 MapView?-LMLPHP

最佳答案

我认为这会奏效:

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="match_parent"
    android:layout_height="match_parent">


    <LinearLayout
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textAppearance="?android:attr/textAppearanceMedium"
            android:text="Sum text if you need" />

        <com.google.android.gms.maps.MapView
            android:layout_width="match_parent"
            android:layout_height="wrap_content" />

    </LinearLayout>

</android.support.v7.widget.CardView>
CardView 本身只不过是一个普通的 FrameLayout,几乎没有美学上的添加。因此,您可以在其中膨胀任何您想要的东西。

CardViewdocs :



这只是从布局的角度来看,要使 MapView 实际工作,您需要进行一些额外的设置。这里有一些资源,您可以在其中了解更多信息:
  • Official guide 来自 Google Developers。
  • Tutorial on MapView v2 由 Vogella。
  • 关于android - 如何在 CardView 中显示 MapView?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35865485/

    10-13 04:40