答案 0 :(得分:3)
我认为这会奏效:
<?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
,几乎没有美学添加。因此,你可以膨胀你想要的任何东西。
来自CardView
的{{3}}:
带有圆角背景和阴影的FrameLayout。
这只是从布局的角度来看,要让MapView
实际工作,您需要进行一些额外的设置。这里有几个资源,您可以在其中了解更多信息:
答案 1 :(得分:0)
<android.support.v7.widget.CardView
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:cardCornerRadius="2dp"
app:cardElevation="4dp">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:id="@+id/title"
android:layout_marginLeft="16dp"
android:layout_marginTop="16dp"
android:text="Will Be Delievered To" />
<fragment
android:id="@+id/map"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:layout_width="match_parent"
android:layout_height="160dp" />
<TextView
android:id="@+id/subtext"
android:layout_marginLeft="16dp"
android:layout_marginTop="16dp"
android:text="Blah Blah Blah" />
</LinearLayout>
</android.support.v7.widget.CardView>
在MapView上使用Fragment。使用片段时,请使用名称MapFragment
或SupportMapFragment
。