私は sipdroid http://code.google.com/p/sipdroid/を編集しており、jsut は背景をカスタム画像に変更したいと考えています。デフォルトでは、それらは灰色で、画面全体が灰色ですが、背景を追加すると、周囲に白い境界線があると想像されますが、これはなぜですか? style.xml またはどこかでどのように変更できますか?
ボトムはイメージ名です。bototm を 2 か所に追加する前に、次の行を読みました。
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>