Shankha Jana
Shankha Jana

Reputation: 79

android layout background image is not showing properly

i have used a background image for a layout in a text sending app.The background image is showing properly in the layout view( in IDE ) but when i am running the app on emulator/phone the quality of the image gets degraded.here is the xml code for the layout

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/linearLayout1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" 
android:background="@drawable/black_bg">

<TextView
android:id="@+id/phoneNum"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Enter Recipient: "
android:textAppearance="?android:attr/textAppearanceLarge"
 android:background="#00000000"
  android:textColor="#B3FFFFFF" />

<EditText
android:id="@+id/editPhoneNum"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:inputType="phone" >
</EditText>

<TextView
android:id="@+id/SMSLabel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Enter Your Text: "
android:textAppearance="?android:attr/textAppearanceLarge"
android:background="#00000000"
  android:textColor="#B3FFFFFF"  />

<EditText
android:id="@+id/editSMS"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:inputType="textMultiLine"
android:lines="5"
android:gravity="top" />

<Button
android:id="@+id/button"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Send" />

</LinearLayout>

any help would be greatly appreciated.

Upvotes: 0

Views: 1995

Answers (1)

Dhwanik Gandhi
Dhwanik Gandhi

Reputation: 685

You should put the various size images into the followings folder

for more detail visit this link

  • ldpi
  • mdpi
  • hdpi
  • xhdpi
  • xxhdpi

Upvotes: 3

Related Questions