2017-06-14 55 views
0

插入ListView項後,Spinner視圖被隱藏。ListView隱藏GridLayout中的微調框

<?xml version="1.0" encoding="utf-8"?> 
<GridLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:id="@+id/activity_main" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:paddingBottom="@dimen/activity_vertical_margin" 
    android:paddingLeft="@dimen/activity_horizontal_margin" 
    android:paddingRight="@dimen/activity_horizontal_margin" 
    android:paddingTop="@dimen/activity_vertical_margin" 
    android:columnCount="2" 
    tools:context="aloncompany.salary.MainActivity"> 
    <TextView 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:text="@string/month" 
     android:layout_row="0" 
     android:layout_column="0"/> 
    <Spinner 
     android:id="@+id/spinner" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:entries="@array/months" 
     android:layout_row="0" 
     android:layout_column="1" 
     android:layout_gravity="center_horizontal"/> 
    <ListView 
     android:id="@+id/list_view" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:layout_marginTop="20dp" 
     android:layout_row="1" 
     android:layout_column="0"/> 
</GridLayout> 

爲什麼會發生?

順便說一句,我使用GridLayout的第一個地方,因爲我想有TextView和微調在同一行,我不能(?)在使用LinearLayout。

回答

0

你可以嘗試通過給列表視圖給予一個特定的寬度,而不是匹配父項?我懷疑這是因爲你的第0列(列表視圖和文本視圖)佔據了整個佈局和第一列(微調)被隱藏

+0

不,仍然不起作用。 – Pilpel

0

我解決了這個問題,在ListView中添加android:layout_columnSpan="2"