softkeyboard pushing content outside the screen





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}







1















I want to add 2 buttons to the bottom of the screen.
I can't add any layout at the bottom in scrollview, so I created 2 different layouts.
But content is going outside of the screen when I open soft keyboard, it also goes out of screen on small screen devices (like 4 inch device).



This is the layout.xml file



<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/op"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".accept"
tools:layout_editor_absoluteY="81dp">


<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"

app:layout_constraintTop_toTopOf="parent">

<ScrollView
android:id="@+id/scrollView2"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:fitsSystemWindows="true"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.5"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">

<LinearLayout

android:layout_width="match_parent"
android:layout_height="400dp"
android:layout_gravity="center"
android:layout_marginTop="20dp"

android:focusable="true"
android:orientation="vertical"
android:paddingBottom="60dp"
tools:layout_editor_absoluteX="3dp"
tools:layout_editor_absoluteY="128dp">

<android.support.v4.widget.Space
android:layout_width="match_parent"
android:layout_height="10dp" />

<ImageView
android:id="@+id/imageView"
android:layout_width="wrap_content"
android:layout_height="125dp"
android:contentDescription="@string/appname"
app:srcCompat="@drawable/home" />

<android.support.constraint.ConstraintLayout
android:id="@+id/frameLayout4"
android:layout_width="match_parent"
android:layout_height="250dp"
android:layout_gravity="center">

<EditText

android:id="@+id/vno"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="30dp"
android:layout_marginRight="20dp"
android:defaultFocusHighlightEnabled="true"
android:ems="10"
android:focusable="true"
android:focusableInTouchMode="true"
android:focusedByDefault="true"
android:hint="MH14DD2565"
android:inputType="textCapCharacters"
android:maxLength="10"

android:paddingLeft="8dp"
android:selectAllOnFocus="true"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.395" />

<TextView
android:id="@+id/vvno"
android:layout_width="wrap_content"
android:layout_height="43dp"
android:gravity="bottom"
android:hint="MH14DD2565"
android:nextFocusUp="@id/location"
android:paddingLeft="20dp"
android:text="Enter Vehicle Number:"
android:textColor="@android:color/black"
android:textSize="18sp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.13" />

<EditText
android:id="@+id/location"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="30dp"
android:layout_marginRight="20dp"
android:ems="10"
android:hint="nigdi"
android:inputType="text"
android:onClick="display"
android:paddingLeft="8dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.098"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.848" />

<TextView
android:id="@+id/vaname"
android:layout_width="wrap_content"
android:layout_height="25dp"
android:layout_marginLeft="20dp"
android:gravity="bottom"
android:text="Enter Location:"
android:textColor="@android:color/black"
android:textSize="18dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.613" />


</android.support.constraint.ConstraintLayout>

<FrameLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
tools:layout_editor_absoluteY="165dp">

<Button
android:id="@+id/Submit"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="top|center"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:background="@android:color/holo_blue_bright"
android:gravity="center"
android:onClick="display"
android:text="submit" />

</FrameLayout>

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginTop="20dp"
android:gravity="center"
android:text="Register"
android:textColor="@android:color/holo_blue_dark"
android:textSize="18sp" />

</LinearLayout>
</ScrollView>

<LinearLayout
android:id="@+id/frameLayout5"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:foregroundGravity="bottom"
android:gravity="bottom"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="1.0">


<Button
android:id="@+id/cp"
style="@style/Base.Widget.AppCompat.ButtonBar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="@android:color/holo_red_light"
android:onClick="callp"
android:text="call 100"
android:textColor="@android:color/black" />

<Button
android:id="@+id/ch"
style="@style/Base.Widget.AppCompat.ButtonBar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="@android:color/holo_orange_light"
android:onClick="callhos"
android:text="Call 108" />

</LinearLayout>
</LinearLayout>

</android.support.constraint.ConstraintLayout>









share|improve this question























  • Use ScrollView as parent of your layout

    – Intsab Haider
    Nov 24 '18 at 14:27











  • Post the screenshot of the UI

    – Sandeep Insan
    Nov 24 '18 at 14:28


















1















I want to add 2 buttons to the bottom of the screen.
I can't add any layout at the bottom in scrollview, so I created 2 different layouts.
But content is going outside of the screen when I open soft keyboard, it also goes out of screen on small screen devices (like 4 inch device).



This is the layout.xml file



<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/op"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".accept"
tools:layout_editor_absoluteY="81dp">


<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"

app:layout_constraintTop_toTopOf="parent">

<ScrollView
android:id="@+id/scrollView2"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:fitsSystemWindows="true"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.5"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">

<LinearLayout

android:layout_width="match_parent"
android:layout_height="400dp"
android:layout_gravity="center"
android:layout_marginTop="20dp"

android:focusable="true"
android:orientation="vertical"
android:paddingBottom="60dp"
tools:layout_editor_absoluteX="3dp"
tools:layout_editor_absoluteY="128dp">

<android.support.v4.widget.Space
android:layout_width="match_parent"
android:layout_height="10dp" />

<ImageView
android:id="@+id/imageView"
android:layout_width="wrap_content"
android:layout_height="125dp"
android:contentDescription="@string/appname"
app:srcCompat="@drawable/home" />

<android.support.constraint.ConstraintLayout
android:id="@+id/frameLayout4"
android:layout_width="match_parent"
android:layout_height="250dp"
android:layout_gravity="center">

<EditText

android:id="@+id/vno"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="30dp"
android:layout_marginRight="20dp"
android:defaultFocusHighlightEnabled="true"
android:ems="10"
android:focusable="true"
android:focusableInTouchMode="true"
android:focusedByDefault="true"
android:hint="MH14DD2565"
android:inputType="textCapCharacters"
android:maxLength="10"

android:paddingLeft="8dp"
android:selectAllOnFocus="true"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.395" />

<TextView
android:id="@+id/vvno"
android:layout_width="wrap_content"
android:layout_height="43dp"
android:gravity="bottom"
android:hint="MH14DD2565"
android:nextFocusUp="@id/location"
android:paddingLeft="20dp"
android:text="Enter Vehicle Number:"
android:textColor="@android:color/black"
android:textSize="18sp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.13" />

<EditText
android:id="@+id/location"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="30dp"
android:layout_marginRight="20dp"
android:ems="10"
android:hint="nigdi"
android:inputType="text"
android:onClick="display"
android:paddingLeft="8dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.098"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.848" />

<TextView
android:id="@+id/vaname"
android:layout_width="wrap_content"
android:layout_height="25dp"
android:layout_marginLeft="20dp"
android:gravity="bottom"
android:text="Enter Location:"
android:textColor="@android:color/black"
android:textSize="18dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.613" />


</android.support.constraint.ConstraintLayout>

<FrameLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
tools:layout_editor_absoluteY="165dp">

<Button
android:id="@+id/Submit"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="top|center"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:background="@android:color/holo_blue_bright"
android:gravity="center"
android:onClick="display"
android:text="submit" />

</FrameLayout>

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginTop="20dp"
android:gravity="center"
android:text="Register"
android:textColor="@android:color/holo_blue_dark"
android:textSize="18sp" />

</LinearLayout>
</ScrollView>

<LinearLayout
android:id="@+id/frameLayout5"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:foregroundGravity="bottom"
android:gravity="bottom"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="1.0">


<Button
android:id="@+id/cp"
style="@style/Base.Widget.AppCompat.ButtonBar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="@android:color/holo_red_light"
android:onClick="callp"
android:text="call 100"
android:textColor="@android:color/black" />

<Button
android:id="@+id/ch"
style="@style/Base.Widget.AppCompat.ButtonBar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="@android:color/holo_orange_light"
android:onClick="callhos"
android:text="Call 108" />

</LinearLayout>
</LinearLayout>

</android.support.constraint.ConstraintLayout>









share|improve this question























  • Use ScrollView as parent of your layout

    – Intsab Haider
    Nov 24 '18 at 14:27











  • Post the screenshot of the UI

    – Sandeep Insan
    Nov 24 '18 at 14:28














1












1








1








I want to add 2 buttons to the bottom of the screen.
I can't add any layout at the bottom in scrollview, so I created 2 different layouts.
But content is going outside of the screen when I open soft keyboard, it also goes out of screen on small screen devices (like 4 inch device).



This is the layout.xml file



<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/op"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".accept"
tools:layout_editor_absoluteY="81dp">


<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"

app:layout_constraintTop_toTopOf="parent">

<ScrollView
android:id="@+id/scrollView2"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:fitsSystemWindows="true"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.5"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">

<LinearLayout

android:layout_width="match_parent"
android:layout_height="400dp"
android:layout_gravity="center"
android:layout_marginTop="20dp"

android:focusable="true"
android:orientation="vertical"
android:paddingBottom="60dp"
tools:layout_editor_absoluteX="3dp"
tools:layout_editor_absoluteY="128dp">

<android.support.v4.widget.Space
android:layout_width="match_parent"
android:layout_height="10dp" />

<ImageView
android:id="@+id/imageView"
android:layout_width="wrap_content"
android:layout_height="125dp"
android:contentDescription="@string/appname"
app:srcCompat="@drawable/home" />

<android.support.constraint.ConstraintLayout
android:id="@+id/frameLayout4"
android:layout_width="match_parent"
android:layout_height="250dp"
android:layout_gravity="center">

<EditText

android:id="@+id/vno"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="30dp"
android:layout_marginRight="20dp"
android:defaultFocusHighlightEnabled="true"
android:ems="10"
android:focusable="true"
android:focusableInTouchMode="true"
android:focusedByDefault="true"
android:hint="MH14DD2565"
android:inputType="textCapCharacters"
android:maxLength="10"

android:paddingLeft="8dp"
android:selectAllOnFocus="true"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.395" />

<TextView
android:id="@+id/vvno"
android:layout_width="wrap_content"
android:layout_height="43dp"
android:gravity="bottom"
android:hint="MH14DD2565"
android:nextFocusUp="@id/location"
android:paddingLeft="20dp"
android:text="Enter Vehicle Number:"
android:textColor="@android:color/black"
android:textSize="18sp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.13" />

<EditText
android:id="@+id/location"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="30dp"
android:layout_marginRight="20dp"
android:ems="10"
android:hint="nigdi"
android:inputType="text"
android:onClick="display"
android:paddingLeft="8dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.098"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.848" />

<TextView
android:id="@+id/vaname"
android:layout_width="wrap_content"
android:layout_height="25dp"
android:layout_marginLeft="20dp"
android:gravity="bottom"
android:text="Enter Location:"
android:textColor="@android:color/black"
android:textSize="18dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.613" />


</android.support.constraint.ConstraintLayout>

<FrameLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
tools:layout_editor_absoluteY="165dp">

<Button
android:id="@+id/Submit"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="top|center"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:background="@android:color/holo_blue_bright"
android:gravity="center"
android:onClick="display"
android:text="submit" />

</FrameLayout>

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginTop="20dp"
android:gravity="center"
android:text="Register"
android:textColor="@android:color/holo_blue_dark"
android:textSize="18sp" />

</LinearLayout>
</ScrollView>

<LinearLayout
android:id="@+id/frameLayout5"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:foregroundGravity="bottom"
android:gravity="bottom"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="1.0">


<Button
android:id="@+id/cp"
style="@style/Base.Widget.AppCompat.ButtonBar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="@android:color/holo_red_light"
android:onClick="callp"
android:text="call 100"
android:textColor="@android:color/black" />

<Button
android:id="@+id/ch"
style="@style/Base.Widget.AppCompat.ButtonBar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="@android:color/holo_orange_light"
android:onClick="callhos"
android:text="Call 108" />

</LinearLayout>
</LinearLayout>

</android.support.constraint.ConstraintLayout>









share|improve this question














I want to add 2 buttons to the bottom of the screen.
I can't add any layout at the bottom in scrollview, so I created 2 different layouts.
But content is going outside of the screen when I open soft keyboard, it also goes out of screen on small screen devices (like 4 inch device).



This is the layout.xml file



<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/op"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".accept"
tools:layout_editor_absoluteY="81dp">


<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"

app:layout_constraintTop_toTopOf="parent">

<ScrollView
android:id="@+id/scrollView2"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:fitsSystemWindows="true"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.5"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">

<LinearLayout

android:layout_width="match_parent"
android:layout_height="400dp"
android:layout_gravity="center"
android:layout_marginTop="20dp"

android:focusable="true"
android:orientation="vertical"
android:paddingBottom="60dp"
tools:layout_editor_absoluteX="3dp"
tools:layout_editor_absoluteY="128dp">

<android.support.v4.widget.Space
android:layout_width="match_parent"
android:layout_height="10dp" />

<ImageView
android:id="@+id/imageView"
android:layout_width="wrap_content"
android:layout_height="125dp"
android:contentDescription="@string/appname"
app:srcCompat="@drawable/home" />

<android.support.constraint.ConstraintLayout
android:id="@+id/frameLayout4"
android:layout_width="match_parent"
android:layout_height="250dp"
android:layout_gravity="center">

<EditText

android:id="@+id/vno"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="30dp"
android:layout_marginRight="20dp"
android:defaultFocusHighlightEnabled="true"
android:ems="10"
android:focusable="true"
android:focusableInTouchMode="true"
android:focusedByDefault="true"
android:hint="MH14DD2565"
android:inputType="textCapCharacters"
android:maxLength="10"

android:paddingLeft="8dp"
android:selectAllOnFocus="true"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.395" />

<TextView
android:id="@+id/vvno"
android:layout_width="wrap_content"
android:layout_height="43dp"
android:gravity="bottom"
android:hint="MH14DD2565"
android:nextFocusUp="@id/location"
android:paddingLeft="20dp"
android:text="Enter Vehicle Number:"
android:textColor="@android:color/black"
android:textSize="18sp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.13" />

<EditText
android:id="@+id/location"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="30dp"
android:layout_marginRight="20dp"
android:ems="10"
android:hint="nigdi"
android:inputType="text"
android:onClick="display"
android:paddingLeft="8dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.098"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.848" />

<TextView
android:id="@+id/vaname"
android:layout_width="wrap_content"
android:layout_height="25dp"
android:layout_marginLeft="20dp"
android:gravity="bottom"
android:text="Enter Location:"
android:textColor="@android:color/black"
android:textSize="18dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.613" />


</android.support.constraint.ConstraintLayout>

<FrameLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
tools:layout_editor_absoluteY="165dp">

<Button
android:id="@+id/Submit"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="top|center"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:background="@android:color/holo_blue_bright"
android:gravity="center"
android:onClick="display"
android:text="submit" />

</FrameLayout>

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginTop="20dp"
android:gravity="center"
android:text="Register"
android:textColor="@android:color/holo_blue_dark"
android:textSize="18sp" />

</LinearLayout>
</ScrollView>

<LinearLayout
android:id="@+id/frameLayout5"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:foregroundGravity="bottom"
android:gravity="bottom"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="1.0">


<Button
android:id="@+id/cp"
style="@style/Base.Widget.AppCompat.ButtonBar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="@android:color/holo_red_light"
android:onClick="callp"
android:text="call 100"
android:textColor="@android:color/black" />

<Button
android:id="@+id/ch"
style="@style/Base.Widget.AppCompat.ButtonBar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="@android:color/holo_orange_light"
android:onClick="callhos"
android:text="Call 108" />

</LinearLayout>
</LinearLayout>

</android.support.constraint.ConstraintLayout>






android android-studio android-layout






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 24 '18 at 14:18









Pritam PawadePritam Pawade

82




82













  • Use ScrollView as parent of your layout

    – Intsab Haider
    Nov 24 '18 at 14:27











  • Post the screenshot of the UI

    – Sandeep Insan
    Nov 24 '18 at 14:28



















  • Use ScrollView as parent of your layout

    – Intsab Haider
    Nov 24 '18 at 14:27











  • Post the screenshot of the UI

    – Sandeep Insan
    Nov 24 '18 at 14:28

















Use ScrollView as parent of your layout

– Intsab Haider
Nov 24 '18 at 14:27





Use ScrollView as parent of your layout

– Intsab Haider
Nov 24 '18 at 14:27













Post the screenshot of the UI

– Sandeep Insan
Nov 24 '18 at 14:28





Post the screenshot of the UI

– Sandeep Insan
Nov 24 '18 at 14:28












0






active

oldest

votes












Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53459079%2fsoftkeyboard-pushing-content-outside-the-screen%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53459079%2fsoftkeyboard-pushing-content-outside-the-screen%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







這個網誌中的熱門文章

Tangent Lines Diagram Along Smooth Curve

Yusuf al-Mu'taman ibn Hud

Zucchini