0

Ich habe Probleme mit Layout (Schaltflächen) in Andoid. Was ich will, ist Tasten innerhalb Scroll angezeigt werden, aber die Scroll müssen unter einem RelativeLayout oder mit anderen Worten sein, die ersten beiden Schaltflächen aus der Scrollview sind nicht auf meinem Handy angezeigt ..Android ScrollView innerhalb LinearLayout

hier ist das Bild: enter image description here

hier ist mein Layout:

<RelativeLayout android:layout_width="fill_parent" android:layout_height="wrap_content"> 
     <TextView android:textAppearance="?android:textAppearanceLarge" android:id="@+id/textView1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="58.0dip" android:text="@string/naziv" android:layout_alignParentTop="true" android:layout_centerHorizontal="true" /> 
    </RelativeLayout> 

    <ScrollView 
     android:layout_width="fill_parent" 
     android:layout_height="fill_parent" 
     android:id="@+id/scrollView" > 

     <LinearLayout android:layout_gravity="center" android:orientation="vertical" android:paddingLeft="30.0dip" android:paddingTop="90.0dip" android:paddingRight="30.0dip" android:paddingBottom="20dp" android:layout_width="fill_parent" android:layout_height="wrap_content"> 
      <Button android:id="@+id/button0" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/gumb_veter" /> 
      <Button android:id="@+id/button4" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/gumb_plimovanje" /> 
      <Button android:id="@+id/button1" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/gumb_trenutni_podatki" /> 
      <Button android:id="@+id/button5" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/gumb_video" /> 
      <Button android:id="@+id/button2" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/gumb_mbp" /> 
      <Button android:id="@+id/button10" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/gumb_wsg"/> 
      <Button android:id="@+id/button11" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/gumb_ath" /> 
      <Button android:id="@+id/button12" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/gumb_sts" /> 
      <Button android:id="@+id/button13" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/gumb_w" /> 
      <Button android:id="@+id/button14" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/gumb_dotb" /> 
      <Button android:id="@+id/button15" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/gumb_ast" /> 
      <Button android:id="@+id/button16" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/gumb_caw" /> 
      <Button android:id="@+id/button17" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/gumb_pado" /> 


     </LinearLayout> 
    </ScrollView> 



</LinearLayout> 

Wie ein Scroll unten Text Diplay "morska bioloska postaja ..."?

danke

Antwort

1

Sie benötigen android:layout_gravity="center" vom LinearLayout innerhalb des ScrollView zu entfernen. Möglicherweise möchten Sie auch die android:paddingTop="90.0dip" entfernen.

1

fügen Sie diese zu Ihrer Scroll:

android:layout_below = "@id/textView1" 

dies die Schriftrolle unter Ihrem Textview hinzufügen sollte, und entfernen Sie diese:

android:layout_height="fill_parent" 

und ersetzen durch das:

android:layout_height="wrap_content" 
Verwandte Themen