无法在地图片段android上添加边框

时间:2014-06-17 14:50:20

标签: android layout android-fragments border

当我尝试在片段上添加边框时出现问题,这似乎无法正常工作...... 这是我的片段xml,但是如果我在其他布局上添加了线性或相对布局,这可以工作..

<fragment
        android:id="@+id/map"
        android:name="com.google.android.gms.maps.SupportMapFragment"
        android:layout_width="match_parent"
        android:layout_height="120dp"
        android:layout_below="@+id/include1"
        android:background="@drawable/border_bottom"
         />

和border_bottom.xml

<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
  <item> 
    <shape android:shape="rectangle">
      <solid android:color="#FF0000" /> 
    </shape>
  </item>   
    <item android:bottom="5dp" >  
     <shape android:shape="rectangle"> 
      <solid android:color="#000000" />
    </shape>
   </item>    
 </layer-list> 

我该如何解决?

1 个答案:

答案 0 :(得分:0)

作为答案的一个例子,下面是代码。使用linearlayout包装片段映射,并将边框放在线性布局中。在您的片段地图中,添加边距

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/border_bottom" >
    <fragment
        android:id="@+id/map"
        android:name="com.google.android.gms.maps.SupportMapFragment"
        android:layout_width="match_parent"
        android:layout_margin="2dp"
        android:layout_height="120dp"
        android:layout_below="@+id/include1"
        android:background="@drawable/border_bottom"
     />
</LinearLayout>