0

我在Andoid中的佈局(按鈕)有問題。我要的是顯示內滾動型,但滾動型按鈕必須低於RelativeLayout的或換句話說,從滾動型前兩個按鈕沒有顯示我的手機上..LinearLayout中的Android ScrollView

這裏是圖片: enter image description here

這裏是我的佈局:

<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> 

如何diplay下面的文字 「morska bioloska postaja ......」 滾動型?

謝謝

回答

1

您需要從LinearLayout刪除android:layout_gravity="center"ScrollView內。您可能還想要刪除其android:paddingTop="90.0dip"

1

添加到您的滾動型:

android:layout_below = "@id/textView1" 

這應該添加您的TextView下面的滾動和刪除此:

android:layout_height="fill_parent" 

和替換本:

android:layout_height="wrap_content" 
相關問題