2015-08-31 62 views
0
<ScrollView 
    android:id="@+id/scrollView1" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content"> 

    <LinearLayout 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:weightSum="100" 
    android:orientation="vertical" > 

    <TextView 
     android:id="@+id/te" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_weight="50" 
     android:text="TextView1" /> 

    <TextView 
     android:id="@+id/te2" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_weight="50" 
     android:text="TextView2" /> 

</LinearLayout> 
</ScrollView> 

問題是我想通過這兩個邊側TextViews和兩個textviews.But垂直滾動型它deesn't一樣工作,當我方向設置爲垂直的TextView成爲一個低於另一個,但滾動視圖效果很好。我想你明白我在說什麼。請給我找一個解決方案。滾動型與weightsum方向

回答

0

<LinearLayout 
android:layout_width="match_parent" 
android:layout_height="wrap_content" 
android:weightSum="100" 
android:orientation="horizontal" > 

<TextView 
    android:id="@+id/te" 
    android:layout_width="0dp" 
    android:layout_height="wrap_content" 
    android:layout_weight="50" 
    android:text="TextView1" /> 

<TextView 
    android:id="@+id/te2" 
    android:layout_width="0dp" 
    android:layout_height="wrap_content" 
    android:layout_weight="50" 
    android:text="TextView2" /> 

+0

問題仍然存在,現在textviews是水平的,但是滾動視圖deoesn't工作! – stranger

+0

滾動視圖將工作,儘量讓你的看法比屏幕更大,然後滾動視圖將工作 – theLazyFinder

+0

根據你的代碼,滾動視圖將工作,現在可以任何視圖切割 – theLazyFinder