Scrollable layout in Android

前端 未结 2 1557
无人共我
无人共我 2020-12-29 02:46

I have a registration form in a LinearLayout as shown below:

\"alt

When emulator sc

相关标签:
2条回答
  • 2020-12-29 03:25

    I simply added this code in my activity of AndroidManifest.xml

    android:windowSoftInputMode="stateVisible|adjustResize"
    
    0 讨论(0)
  • 2020-12-29 03:34

    Try putting your LinearLayout inside an ScrollView like this:

    <?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">
    
        <LinearLayout android:id="@+id/menu_ll"
            android:layout_width="fill_parent" android:layout_height="fill_parent"></LinearLayout>
    
    </ScrollView>
    
    0 讨论(0)
提交回复
热议问题