尝试创建一个可滚动的高分列表,如下所示:
foo 1000 bar 876 foobar 500 foobarfoo 1
我目前正在使用GridView.我想将名称列宽设置为屏幕的60%,将得分列宽度设置为40%.可能吗?
目前我正在通过costum适配器尝试.这是getview功能:
public View getView(int position,View convertView,ViewGroup parent) { TextView tv; if (convertView == null) { tv = new TextView(context); tv.setTextSize(25); tv.setTextColor(Color.WHITE); if (position % 2 == 0) { tv.setLayoutParams(new GridView.LayoutParams((width/10)*6,50)); } else { tv.setLayoutParams(new GridView.LayoutParams((width/10)*4,50)); } } else { tv = (TextView) convertView; } tv.setText(texts[position]); return tv; }
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" android:id="@+id/top"> <GridView android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_weight="2" android:id="@+id/grid" android:numColumns="2" android:columnWidth="0dp" > </GridView> <Button android:layout_width="fill_parent" android:layout_height="wrap_content" android:id="@+id/backbutton" android:text="@string/backstr"></Button> </LinearLayout>
所以问题再次出现:是否可以设置GridView以添加不同大小的列?如果是,那我的方法是好的? (可能不是,因为它不起作用:))我只是错过了什么?
先感谢您!
解决方法
我们不得不为一个项目做这个,并且不想使用除GridView以外的任何东西,因为功能被重复,但在一个GridView上我们需要一个稍微不同的视图配置(但仍然使用适配器和所有其他好东西).我们发现如果你覆盖GridView的layoutChildren函数,你可以这样做,虽然它的文档记录很差.
我们的实现检查特殊视图以及是否已实现新布局:
@Override protected void layoutChildren(){ super.layoutChildren(); if(!isSpecial || layoutAlreadySet) return; layoutAlreadySet = true; //Implement special layout.... }