背景图像周围的白色边框?

时间:2013-10-17 13:42:42

标签: android

我正在编辑sipdroid http://code.google.com/p/sipdroid/并且jsut想要将背景更改为自定义图像。默认情况下,它们是灰色的,整个屏幕都是灰色的,但是当我在背景中添加想象时,它们周围有白色边框,为什么会这样呢?如何在styles.xml或其他地方更改它?

enter image description here

底部是图像名称,在我添加bototm拖曳位置之前读取的行: android:background="#736f6e"

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    **android:background="@drawable/bottom">
<!--android:background="#736f6e"-->**
    <LinearLayout
        android:orientation="horizontal"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content">

        <LinearLayout
            android:orientation="horizontal"
            android:layout_weight="1"
            android:gravity="left"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            >

            <LinearLayout
                android:orientation="vertical"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:paddingLeft="15dip"
                android:paddingRight="15dip"
                android:paddingTop="15dip">

                <TextView
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content"
                    android:textColor="#ffffff"
                    android:typeface="serif"
                    android:textStyle="bold|italic"
                    android:shadowDx="1"
                    android:shadowDy="1"
                    android:shadowRadius="1"
                    android:shadowColor="#aaaaaa"
                    android:textSize="28dip"
                    android:text="@string/app_name"/>

                </LinearLayout>
        </LinearLayout>

        <LinearLayout
            android:orientation="horizontal"
            android:layout_weight="0"
            android:gravity="right"
            android:paddingTop="10dip"
            android:paddingLeft="10dip"
            android:paddingRight="10dip"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content">

            <Button
                android:id="@+id/contacts_button"
                android:drawableLeft="@drawable/ic_menu_dial_pad"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"/>


        </LinearLayout>
    </LinearLayout>

    <LinearLayout
        android:orientation="vertical"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:paddingLeft="5dip"
        android:paddingRight="5dip">

        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical"
            android:padding="5dip" >

            <org.sipdroid.sipua.ui.InstantAutoCompleteTextView
                android:id="@+id/txt_callee2"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:hint="@string/hint2"
                android:imeOptions="actionSend"
                android:inputType="phone"
                android:singleLine="true" >

                <requestFocus />
            </org.sipdroid.sipua.ui.InstantAutoCompleteTextView>

            <org.sipdroid.sipua.ui.InstantAutoCompleteTextView
                android:id="@+id/txt_callee"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:hint="@string/hint"
                android:imeOptions="actionSend"
                android:inputType="textEmailAddress"
                android:singleLine="true" />

        </LinearLayout>



    </LinearLayout>

    <LinearLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:background="@drawable/bottom"
        android:gravity="bottom"
        **android:orientation="vertical" >
        <!-- android:background="#736f6e" -->**


        <Button
            android:id="@+id/create_button"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:text="@string/menu_create" />
    </LinearLayout>


</LinearLayout>

1 个答案:

答案 0 :(得分:1)

作为长期解决方案,Dymmeh是正确的。你应该看一下RelativeLayouts。

对于这个问题,根据您从GIMP导出图像的内容以及图像相对于图层内容的大小,它会增加一个小的白色边距。

尝试确保所有图层都等于图像的最大尺寸并导出为PNG plain。检查所有选项。