
Untitled
By: a guest on
Aug 9th, 2012 | syntax:
None | size: 0.78 KB | hits: 18 | expires: Never
android button above keyboard with just a scrollview and relativeview
<ScrollView>
<RelativeView>
...
</RelativeView>
</Scrolview>
<RelativeView>
<button />
<ScrollView>
<RelativeView>
</RelativeView>
</ScrollView>
</RelativeView>
Add **adjustResize** or **adjustPan** in your manifest file.
<application
android:icon="@drawable/icon"
android:label="@string/app_name" >
<activity
.....
android:windowSoftInputMode="adjustResize" >
<intent-filter >
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>