Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

hi i have a xml file in which i set a background image for whole layout then after that i put 2 text boxt and one button image.but when i typing on edit box softkeyboard hides the button image for submmit the data ,so i want to set the scrool for whole lay out but when i set the scroll it only scroll back ground image not the whole layout so all ui is distorting so how to make scroolable whole layout my xml is below pls modify on my code

thanks

  <?xml version="1.0" encoding="utf-8"?>
  <RelativeLayout 
  xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_gravity="center"
android:background="@drawable/user_id_bg2" >
  <EditText 
  android:inputType="text|textNoSuggestions"

 android:text="" 
 android:id="@+id/editText1" 
 android:singleLine="true"
 android:hint="Enter Your User Id"
 android:layout_marginTop="85dip"
 android:layout_marginLeft="20dip"
 android:layout_marginRight="20dip"   
 android:layout_height="40dip"
 android:layout_width="fill_parent">
 </EditText>
 <EditText 
 android:inputType="text|textNoSuggestions"
 android:password="true"
 android:singleLine="true"
 android:hint="Enter Your Password"
 android:layout_marginTop="125dip"
 android:layout_marginLeft="20dip"
 android:layout_marginRight="20dip"  
 android:id="@+id/editText2" 
 android:imeOptions="actionDone"
 android:layout_height="40dip"
 android:layout_width="fill_parent"/>
 <ImageView 
 android:id="@+id/buttonimg"
 android:layout_below="@id/editText2"
 android:layout_marginLeft="237dip"
 android:layout_width="wrap_content"
 android:layout_height="40dip"
 android:background="@drawable/go_button"
 />
share|improve this question
possible duplicate of link – banzai86 Oct 14 '11 at 12:51

1 Answer

Can you not put everything inside a ScrollView ?

<?xml version="1.0" encoding="utf-8"?>
<ScrollView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"">
    <RelativeLayout 
            android:orientation="vertical"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:layout_gravity="center"
            android:background="@drawable/user_id_bg2" >
 ...
share|improve this answer
if i put everything on scroll view then background image is being scrollable means it is not coming whole without scrolling it down i want to show it without scrolling – shyam Oct 14 '11 at 13:05
1  
try setting the background on a layout, which has the scrollview as the only child and everything else inside that? – Martyn Oct 14 '11 at 13:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.