我的問題是在屏幕底部的白線。我不知道爲什麼它在那裏。它看起來像這樣:背景圖像不灌裝父正確
此佈局在XML定義:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@android:color/black"
android:orientation="vertical" >
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/linearLayout1"
android:layout_width="250dp"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerInParent="true"
android:layout_gravity="bottom"
android:layout_marginBottom="30dp"
android:orientation="vertical" >
<!-- MAIN TITLE -->
<!-- LOGIN TITLE -->
<TextView
android:id="@+id/login_label"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/login"
android:textColor="@android:color/white"
android:textSize="18sp" />
<!-- LOGIN TEXT -->
<EditText
android:id="@+id/login_text"
android:layout_width="250dp"
android:layout_height="wrap_content"
android:inputType="textNoSuggestions"
android:background="@android:color/white"
android:textSize="18dp" />
<!-- PASSWORD TITLE -->
<TextView
android:id="@+id/password_label"
android:layout_width="250dp"
android:layout_height="wrap_content"
android:layout_marginTop="5sp"
android:text="@string/password"
android:textColor="@android:color/white"
android:textSize="18sp" />
<!-- PASSWORD TEXT -->
<EditText
android:id="@+id/password_text"
android:layout_width="250dp"
android:layout_height="wrap_content"
android:layout_marginBottom="10dp"
android:inputType="textPassword"
android:background="@android:color/white"
android:textSize="18dp" />
<!-- LOG IN BUTTON -->
<Button
android:id="@+id/login_button"
android:layout_width="120dp"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:background="#3DB0E1"
android:padding="12dp"
android:text="@string/login_button"
android:textColor="@android:color/white" />
</LinearLayout>
</RelativeLayout>
我也注意到,它僅推出我的應用程序後,會發生。如果我從另一個活動bzy startActivity(intent)
來到這裏,則線條消失。 任何幫助,將不勝感激。
您是否爲您的應用程序設置了Holo-Light主題?嘗試使用正常的Holo主題。另外,我認爲'android:orientation =「vertical」'對'RelativeLayout'無效。 – Ridcully
感謝您的時間。我按照你的建議正常地使用了holo,並刪除了android:orientation =「vertical」,這是以前嘗試的結果。雖然Situtation仍然保持不變,但該線仍然存在。 – slezadav
你的佈局中還有其他的東西嗎?我在eclipse佈局編輯器中嘗試過發佈的佈局,至少沒有看到白線。你以編程方式添加或修改任何東西嗎? – Ridcully