我正在使用这个ExpandableHeightGridView类,其中GridView
“应该”延伸到内容的高度,因为我将它放在ScrollView
内。如果我的GridView
项目已完成,但由于我的GridView
项目是动态的,但它总是没有相同数量的项目,现在问题是如果我的GridView
个项目少,它的高度不会换行到内容高度,但会有空白行的空格。我不明白为什么它会分配空白行。
这是布局:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/mainLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".SecondActivity" >
<ScrollView
android:id="@+id/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:id="@+id/tv"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="0"
android:text="@string/hello_world" />
<com.example.ExpandableHeightGridView
android:id="@+id/gridview_module"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center"
android:horizontalSpacing="20dp"
android:isScrollContainer="false"
android:numColumns="3"
android:stretchMode="columnWidth"
android:verticalSpacing="10dp" />
<Button
android:id="@+id/dial_phone"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="0"
android:onClick="dialPhone"
android:text="Dial Phone" />
</LinearLayout>
</ScrollView>
我将GridView权重分配为1,其他则为0.我是否正确?
答案 0 :(得分:2)
尝试在您的活动中添加此项。
ExpandableHeightGridView exGridView;
exGridView = (ExpandableHeightGridView) findViewById(R.id.myId);
exGridView .setExpanded(true);
我是根据您的link。
创建的答案 1 :(得分:0)
如果要给出layout_weight,请确保layout_height为0dp。不要同时设置layout_height和layout_weight。希望对你有帮助。
同样从滚动视图中删除此标记android:fillViewport =“true”。如果通过将fillViewport设置为true,它实际上要求scrollview扩展gridview,如果它有较少的项目。如果删除此标记,则gridview将换行到其内容,并且行下方不会有额外的空格。