我有一个Activity
包含一个ListView
基于SimpleCursorAdapter
和一个按钮。当我单击按钮时,我希望行高变大。我决定TextView
在按钮上使用高度OnClick
:
TextView tvRow = (TextView) findViewById(R.id.tvRow);
tvRow.setHeight(20);
但它只更改列表的第一行。
Adapter
我可以在'sgetView
方法中更改高度:
TextView tvRow = (TextView) view.findViewById(R.id.tvRow);
tvRow.setHeight(20);
但这不是我需要的功能;我需要这个按钮OnClick
。
如何ListView
通过点击按钮更改行高?甚至可能是一个技巧 :) 谢谢你的时间。
更新:
当我将此代码放入SimpleCursorAdapter
一切正常时,但在方法getView
中BaseAdapter
:
@Override
public View getView(int position, View convertView, ViewGroup parent) {
View view = convertView;
if (view == null) {
view = lInflater.inflate(R.layout.itemF, parent, false);
}
...
final LayoutParams params = view.getLayoutParams();
if (params == null) {
view.setLayoutParams(new LayoutParams(LayoutParams.MATCH_PARENT, mRowHeight));
}else {
params.height = mRowHeight; }
return view;
显示的列表忽略了这一点,它的行宽保持不变。怎么了?
更新:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/llRow"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<CheckBox
android:id="@+id/cbBox"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<LinearLayout
android:id="@+id/llRow1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:paddingTop="5dp" >
<TextView
android:id="@+id/tvName"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Наименование фирмы"
android:textAllCaps="true"
android:textSize="14dp" />
<TextView
android:id="@+id/tvAddr"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Адрес фирмы"
android:textSize="10dp" />
</LinearLayout>