Show all the contents of a layout in the Android Studio preview

Asked

Viewed 1,577 times

0

Hello,

I would like to know how to (if possible) show all the contents of a layout in the Android Studio preview.

Follow image of example:

Imagem do layout

The blue dial, is a button that is in the layout, but I can’t manipulate or see his preview without having to compile the App.

Thanks in advance.

2 answers

2

face vc should put all its layout inside a scroll View which is a scroll bar if not the small devices it n display

    <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"  
 android:layout_width="match_parent"  
 android:layout_height="match_parent"  
 android:orientation="vertical">  

<!-- Todo conteudo -->

 </ScrollView> 

in this blog http://requirecode.blogspot.com.br/2016/08/scroll-view-no-android.html will teach you right

  • Actually my doubt is about android studio, not the layout itself. See my answer which I explain better. But thanks for the answer =)

1


Browser other questions tagged

You are not signed in. Login or sign up in order to post.