如何在Android中删除布局屏幕上的黑线?

时间:2011-02-03 06:02:13

标签: android-layout

我有框架布局,我在其中放置了一个480x800分辨率的图像来填充屏幕。现在我在图像上放置一个按钮。

我的XML看起来像这样......

<ImageView android:id="@+id/ImageView01"
         android:layout_width="480px" 
         android:layout_height="800px"
         android:src="@drawable/img">
 </ImageView>
 <FrameLayout android:id="@+id/FrameLayout01" 
        android:layout_width="174px" 
        android:layout_height="64px"
        android:layout_gravity="bottom|right"
        android:layout_marginBottom="40px"   
        android:layout_marginRight="16px">

   <Button android:id="@+id/callend2"
        android:layout_width="176px"
        android:layout_height="64px"
        android:paddingLeft="20px"
        android:paddingRight="10px"
        android:textColor="#f5f5f5"
        android:textSize="24px"
        android:background="@drawable/csh_call_red_btn_normal"
             android:drawableLeft="@drawable/call_end_call_icon"
        android:text="call end">
   </Button>  
 </FrameLayout>

我的问题是我在按钮或内框布局的边框上得到黑线......

1 个答案:

答案 0 :(得分:-1)

了解包含ImageViewFrameLayout的视图类型会有所帮助。

但是如果你想要一个背景图像,为什么不设置你的层次结构的根视图的android:background属性呢?