2013-05-07 112 views
2

在我的活動中,我有2個文本視圖。我需要拉伸textview2的高度來填充屏幕。我的textview是在scrollview的相對佈局中作爲根。即使我提到了match_parent它不是填滿屏幕,而是以wrap_content的形式呈現。滾動視圖中的textview不填充屏幕的高度

<?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" 
    android:fillViewport="true" 
    android:id="@+id/scrollView1"> 
<RelativeLayout 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:layout_gravity="fill" 
    android:paddingLeft="20dp" 
    android:paddingTop="10dp" 
    android:paddingRight="20dp" 
    android:paddingBottom="20dp" 
    tools:context=".CoupansActivity" 
    android:background="@drawable/back_ground"> 
    <TextView 
     android:id="@+id/textView1" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_alignParentTop="true" 
     android:layout_centerHorizontal="true" 
     android:layout_marginTop="23dp" 
     android:textSize="20dp" 
     android:text="COUPONS" /> 
    <TextView 
     android:id="@+id/textView2" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:layout_gravity="fill" 
     android:layout_centerHorizontal="true" 
     android:layout_marginTop="23dp" 
     android:background="@drawable/back" 
     android:gravity="center" 
     android:text="Some text" /> 
</RelativeLayout> 
    </ScrollView> 
+0

fill_parent呢?應該做這項工作。 – sandkasten 2013-05-07 13:33:19

+0

@sandkasten自從API 8開始,'fill_parent'已被棄用,以支持'match_parent'。 – TronicZomB 2013-05-07 13:34:09

+0

哦,我創建的最後一個應用都是API 7,所以不知道這個改變^^ – sandkasten 2013-05-07 13:36:08

回答

1

嘗試以下操作:

<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout 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" 
    android:layout_gravity="fill" 
    android:paddingLeft="20dp" 
    android:paddingTop="10dp" 
    android:paddingRight="20dp" 
    android:paddingBottom="20dp" 
    tools:context=".CoupansActivity" 
    android:background="@drawable/back_ground"> 

    <TextView 
     android:id="@+id/textView1" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_alignParentTop="true" 
     android:layout_centerHorizontal="true" 
     android:layout_marginTop="23dp" 
     android:textSize="20dp" 
     android:text="COUPONS" /> 

    <TextView 
     android:id="@+id/textView2" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:layout_centerHorizontal="true" 
     android:layout_below="@id/textView1" 
     android:layout_alignParentBottom="true" 
     android:layout_marginTop="23dp" 
     android:background="@drawable/back" 
     android:gravity="center" 
     android:text="Some text" /> 

</RelativeLayout> 

如果你在佈局中有是二TextView的I不認爲ScrollView是必要的。

+0

我需要橫向模式的滾動視圖來查看textview中的全部內容。所以請使用滾動視圖向我發送答案。 - – user2201685 2013-05-13 11:09:49

+0

@ user2201685你需要'TextView'滾動還是隻有一個? – TronicZomB 2013-05-13 12:07:26

+0

@TronicZomB,...似乎在該滾動查看下的textview並沒有改變...... – gumuruh 2014-07-19 06:58:59

1

試試這個,這應該工作..

<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout 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" 
android:layout_gravity="fill" 
android:paddingLeft="20dp" 
android:paddingTop="10dp" 
android:paddingRight="20dp" 
android:paddingBottom="20dp" 
tools:context=".CoupansActivity" 
android:background="@drawable/back_ground"> 

<ScrollView 

android:layout_width="match_parent" 
android:layout_height="match_parent" 
android:fillViewport="true" 
android:id="@+id/scrollView1"> 

<TextView 
    android:id="@+id/textView1" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_alignParentTop="true" 
    android:layout_centerHorizontal="true" 
    android:layout_marginTop="23dp" 
    android:textSize="20dp" 
    android:text="COUPONS" /> 

<TextView 
    android:id="@+id/textView2" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:layout_centerHorizontal="true" 
    android:layout_below="@id/textView1" 
    android:layout_alignParentBottom="true" 
    android:layout_marginTop="23dp" 
    android:background="@drawable/back" 
    android:gravity="center" 
    android:text="Some text" /> 
</ScrollView> 

</RelativeLayout> 
+0

對不起!它不會工作,因爲scrollview可以只有一個孩子在裏面..但我有2 textview – user2201685 2013-05-13 11:07:54

+0

然後你可以使用兩個滾動查看每個textView ... – Saad 2013-05-13 11:13:02

0
.... <RelativeLayout 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:layout_gravity="fill" 
     android:paddingLeft="20dp" 
     android:paddingTop="10dp" 
     android:paddingRight="20dp" 
     android:paddingBottom="20dp" 
     tools:context=".CoupansActivity" 
     android:background="@drawable/back_ground">.... 

刪除如下因素,你會有更好的效果:

  android:paddingLeft="20dp" 
      android:paddingTop="10dp" 
      android:paddingRight="20dp" 
      android:paddingBottom="20dp" 
+0

對不起!它沒有任何區別... – user2201685 2013-05-13 11:12:24

相關問題