web-dev-qa-db-fra.com

Comment faire en sorte que ma mise en page puisse défiler?

Je ne peux pas faire défiler l'écran pour afficher les données dans la section "Répondu par:". Comment puis-je faire défiler ma mise en page?

alt text

72
Prateek Raj

Enroulez tout ça dans une ScrollView:

<?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">
    <!-- Here you put the rest of your current view-->
</ScrollView>

Comme David Hedlund l’a dit, ScrollView ne peut contenir qu’un élément ... alors si vous aviez quelque chose comme ceci:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
  xmlns:Android="http://schemas.Android.com/apk/res/Android"
  Android:layout_width="fill_parent"
  Android:layout_height="fill_parent">
    <!-- bla bla bla-->
</LinearLayout>

Vous devez le changer pour:

<?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:layout_width="fill_parent"
      Android:layout_height="fill_parent">
        <!-- bla bla bla-->
    </LinearLayout>
</ScrollView>
173
Cristian

Pour utiliser la vue par défilement avec la disposition relative:

<ScrollView
    xmlns:Android="http://schemas.Android.com/apk/res/Android"
    Android:layout_width="fill_parent"
    Android:layout_height="fill_parent"
    Android:fillViewport="true"> <!--IMPORTANT otherwise backgrnd img. will not fill the whole screen -->

    <RelativeLayout
        Android:layout_width="match_parent"
        Android:layout_height="wrap_content"
        Android:paddingBottom="@dimen/activity_vertical_margin"
        Android:paddingLeft="@dimen/activity_horizontal_margin"
        Android:paddingRight="@dimen/activity_horizontal_margin"
        Android:paddingTop="@dimen/activity_vertical_margin"
        Android:background="@drawable/background_image"
    >

    <!-- Bla Bla Bla i.e. Your Textviews/Buttons etc. -->
    </RelativeLayout>
</ScrollView>
35
Vinil Narang

Enroulez tout cela dans un ScrollView

<?xml version="1.0" encoding="utf-8"?>

<ScrollView xmlns:Android="http://schemas.Android.com/apk/res/Android"
    xmlns:tools="http://schemas.Android.com/tools"
    Android:layout_width="match_parent"
    Android:layout_height="match_parent"
    tools:context="com.ruatech.sanikamal.justjava.MainActivity">
<!-- Here you put the rest of your current view-->
</ScrollView>
3
Sani Kamal

Si vous ne vous êtes même pas fait défiler après avoir fait ce qui est écrit ci-dessus .....

Définissez le Android:layout_height="250dp" ou vous pouvez dire xdpx peut être toute valeur numérique.

0
Rahul Singhal