Skip to content Skip to sidebar Skip to footer

Set Scroll On Whole Layout Android

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

Solution 1:

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" >
 ...

Post a Comment for "Set Scroll On Whole Layout Android"