2017-07-18 45 views
0

任何人都可以向我解釋爲什麼我無法使用以下XML代碼顯示地址內容。提前謝謝你。內容應該超過3行,但執行該程序時只顯示兩行內容。無法在Android中使用wrap_content顯示所有內容

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
android:layout_width="match_parent" 
android:layout_height="match_parent" 
xmlns:app="http://schemas.android.com/apk/res-auto" 
android:background="#e6e6e6" 
android:orientation="vertical" 
android:padding="1dp"> 

<ScrollView 
    android:layout_width="match_parent" 
    android:layout_height="match_parent"> 



     <TextView 

      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:layout_weight="1" 
      android:background="#868585" 
      android:padding="0dp" 
      android:text="Basic Information" 
      android:textColor="#ffffff" /> 

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

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

       <ImageView 
        android:layout_width="match_parent" 
        android:layout_height="wrap_content" 
        android:layout_weight="9" 
        app:srcCompat="@drawable/navigation" /> 

       <TextView 
        android:id="@+id/textView7" 
        android:layout_width="match_parent" 
        android:layout_height="match_parent" 
        android:layout_weight="1" 
        android:text="Address" /> 
      </LinearLayout> 


      <View 
       android:layout_width="match_parent" 
       android:layout_height="1dp" 
       android:background="@android:color/darker_gray" /> 


     </LinearLayout> 


    </LinearLayout> 
</ScrollView> 

+2

首先您的滾動視圖應該只有1個子視圖。其次你的地址文本視圖的高度是match_parent而不是wrap_content –

回答

0

你的所有控制不可見,由於滾動視圖,因爲滾動視圖可以haldle直接一個孩子儘量使你的佈局像這樣

<ScrollView 
android:layout_width="match_parent" 
android:layout_height="match_parent" 
android:fillViewport="true"> 

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


    <TextView 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:layout_weight="1" 
     android:background="#868585" 
     android:padding="0dp" 
     android:text="Basic Information" 
     android:textColor="#ffffff" /> 

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

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

      <ImageView 
       android:layout_width="match_parent" 
       android:layout_height="wrap_content" 
       android:layout_weight="9" 
       app:srcCompat="@drawable/navigation" /> 

      <TextView 
       android:id="@+id/textView7" 
       android:layout_width="match_parent" 
       android:layout_height="wrap_content" 
       android:layout_weight="1" 
       android:text="Address" /> 
     </LinearLayout> 


     <View 
      android:layout_width="match_parent" 
      android:layout_height="1dp" 
      android:background="@android:color/darker_gray" /> 


    </LinearLayout> 

</LinearLayout> 

</ScrollView> 
0

試試這個

<?xml version="1.0" encoding="utf-8"?> 
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
     xmlns:app="http://schemas.android.com/apk/res-auto" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:background="#e6e6e6" 
     android:orientation="vertical" 
     android:padding="1dp"> 

     <ScrollView 
      android:layout_width="match_parent" 
      android:layout_height="match_parent"> 
      <LinearLayout 
       android:layout_width="match_parent" 
       android:layout_height="wrap_content" 
       android:orientation="vertical"> 
       <TextView 
        android:layout_width="match_parent" 
        android:layout_height="0dp" 
        android:layout_weight="1" 
        android:background="#868585" 
        android:padding="0dp" 
        android:text="Your text here" 
        android:textColor="#ffffff" /> 

       <LinearLayout 
        android:layout_width="match_parent" 
        android:layout_height="wrap_content" 
        android:orientation="horizontal"> 
        <ImageView 
         android:layout_width="match_parent" 
         android:layout_height="wrap_content" 
         android:layout_weight="9"/> 

        <TextView 
         android:id="@+id/textView7" 
         android:layout_width="match_parent" 
         android:layout_height="match_parent" 
         android:layout_weight="1" 
         android:text="Address" /> 
       </LinearLayout> 
       <View 
        android:layout_width="match_parent" 
        android:layout_height="1dp" 
        android:background="@android:color/darker_gray" /> 
      </LinearLayout> 
     </ScrollView> 
    </LinearLayout> 
0

試試這個。滾動視圖只處理一個直接類,然後給imageview高度matchparent

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:app="http://schemas.android.com/apk/res-auto" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:background="#e6e6e6" 
    android:orientation="vertical" 
    android:padding="1dp"> 

    <ScrollView 
     android:layout_width="match_parent" 
     android:layout_height="match_parent"> 

<LinearLayout 
    android:orientation="vertical" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content"> 
    <TextView 

     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:layout_weight="1" 
     android:background="#868585" 
     android:padding="0dp" 
     android:text="Basic Information" 
     android:textColor="#ffffff" /> 

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

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

      <ImageView 
       android:layout_width="match_parent" 
       android:layout_height="match_parent" 
       android:layout_weight="9" 
       app:srcCompat="@mipmap/ic_launcher" /> 

      <TextView 
       android:id="@+id/textView7" 
       android:layout_width="match_parent" 
       android:layout_height="match_parent" 
       android:layout_weight="1" 
       android:text="Addhhhhhhhhhhhhhhhhhhvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhress" /> 
     </LinearLayout> 


     <View 
      android:layout_width="match_parent" 
      android:layout_height="1dp" 
      android:background="@android:color/darker_gray" /> 


    </LinearLayout> 
</LinearLayout> 
</ScrollView> 

</LinearLayout> 
相關問題