How can I see the full layout in Android?

Francisco Romero

I have a LinearLayout in Android that has this structure:

<LinearLayout>
   <LinearLayout>
      <EditText></EditText>
      <TextView></TextView>
   </LinearLayout>

   //Here more LinearLayout similar to the LinearLayout that I put above

</LinearLayout>

But I have so much EditText and LinearLayout in my layout that I can't see the full layout in the screen of my mobile phone. It won't be a problem if I could move the screen to see the full layout, but I couldn't. I just can see the elements that enter in the screen, the rest aren't accesible.

I saw a lot of questions but any of them let me fix my error.

What can I do?

Thanks in advance!

dieter_h

Use ScrollView as root

 <ScrollView 
          xmlns:android="http://schemas.android.com/apk/res/android"
          android:id="@+id/scroll" 
          android:layout_width="fill_parent"
          android:layout_height="wrap_content">

        <LinearLayout>
           <LinearLayout>
              <EditText></EditText>
              <TextView></TextView>
           </LinearLayout>

       //Here more LinearLayout similar to the LinearLayout that I put above        
       </LinearLayout>

 </ScrollView>

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How can I see the full StackTrace in Maven?

From Java

How can I see the full expanded contract of a Typescript type?

From Dev

How can I see the full cost-centre stack in GHC?

From Dev

How can I get to see the full image in the background?

From Dev

How can I see the full name of NIC properties?

From Dev

How can I see full htdocs on LAN server

From Dev

how to see layout on graphical layout in android?

From Dev

How can i do this layout in android

From Java

How can I programmatically include layout in Android?

From Dev

How can i change this android layout?

From Dev

How can I reset the Android studio layout?

From Dev

How can I programmatically include layout in Android?

From Dev

How can I improve my android layout

From Dev

How can I realize this design in layout android?

From Dev

Android Studio: How can I see which resources are not used?

From Dev

How can i see the xml Drawerlayout file on android studio

From Dev

How can I see my debug logs on Unity Android?

From Dev

How can I see where exactly exception occurred in Android Studio?

From Dev

How can I see the application directly underneath a soft keyboard in Android?

From Dev

How could I see the keyboard layout in Xfce?

From Dev

Stack traces from node are sometimes truncated. How can I see the full error?

From Dev

How can I see the full server response for this API error message in Google Scripts?

From Dev

How can I see the full nodejs "require()" tree starting at a given file?

From Dev

How can I print the full logcat history in a TextView in Android?

From Dev

How can I get android full screen on application level?

From Dev

How can I get android full screen on application level?

From Dev

How can I print the full logcat history in a TextView in Android?

From Dev

How can i make video go full screen on android?

From Dev

How can I replicate a colored separator in Android Layout XML?

Related Related

  1. 1

    How can I see the full StackTrace in Maven?

  2. 2

    How can I see the full expanded contract of a Typescript type?

  3. 3

    How can I see the full cost-centre stack in GHC?

  4. 4

    How can I get to see the full image in the background?

  5. 5

    How can I see the full name of NIC properties?

  6. 6

    How can I see full htdocs on LAN server

  7. 7

    how to see layout on graphical layout in android?

  8. 8

    How can i do this layout in android

  9. 9

    How can I programmatically include layout in Android?

  10. 10

    How can i change this android layout?

  11. 11

    How can I reset the Android studio layout?

  12. 12

    How can I programmatically include layout in Android?

  13. 13

    How can I improve my android layout

  14. 14

    How can I realize this design in layout android?

  15. 15

    Android Studio: How can I see which resources are not used?

  16. 16

    How can i see the xml Drawerlayout file on android studio

  17. 17

    How can I see my debug logs on Unity Android?

  18. 18

    How can I see where exactly exception occurred in Android Studio?

  19. 19

    How can I see the application directly underneath a soft keyboard in Android?

  20. 20

    How could I see the keyboard layout in Xfce?

  21. 21

    Stack traces from node are sometimes truncated. How can I see the full error?

  22. 22

    How can I see the full server response for this API error message in Google Scripts?

  23. 23

    How can I see the full nodejs "require()" tree starting at a given file?

  24. 24

    How can I print the full logcat history in a TextView in Android?

  25. 25

    How can I get android full screen on application level?

  26. 26

    How can I get android full screen on application level?

  27. 27

    How can I print the full logcat history in a TextView in Android?

  28. 28

    How can i make video go full screen on android?

  29. 29

    How can I replicate a colored separator in Android Layout XML?

HotTag

Archive