当我按下它时,我希望表格中的行突出显示。但是,我对此功能的实现导致以下内容:当我滚动表格时(只是滚动,我不打算按表格行),系统将其解释为表格 - 行 - 按下并突出显示该行。 如果我不滚动表格,如何使系统高亮显示行?
我已经制作了示例项目,它包含3个文件:类定义,XML布局和XML文件,其中指定了按下表行时要执行的操作。 他们在这里:
班级定义
public class RowHighlightTestActivity extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
TableLayout mainTable=(TableLayout)findViewById(R.id.table);
Resources r=getResources();
// We gonna have 25 rows in our table
for (int i = 0; i < 25; i++) {
// Set up each row
TableRow row=new TableRow(this);
row.setMinimumHeight(60);
row.setClickable(true);
row.setBackgroundDrawable(r.getDrawable(R.drawable.table_row));
// Add a textView to each row to be able to distinguish them
TextView tv=new TextView(this);
tv.setText("row " + i);
row.addView(tv);
mainTable.addView(row,new TableLayout.LayoutParams(LayoutParams.FILL_PARENT,LayoutParams.WRAP_CONTENT));
}
}
}
XML布局:res / layout / main.xml
<?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" >
<ScrollView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:scrollbars="none" >
<TableLayout
android:id="@+id/table"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
</TableLayout>
</ScrollView>
</LinearLayout>
第3个,res / drawable / table_row.xml,这里指定表格行默认为白色,按下时为暗色:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@android:color/background_light" android:state_focused="false" android:state_pressed="false" android:state_selected="false"/>
<item android:drawable="@android:color/background_dark" android:state_pressed="true"/>
</selector>
滚动表格时如何让系统不突出显示行?
答案 0 :(得分:0)
也许您尝试这样做的方式不是正确的方法。
为什么不尝试在ScrollView中使用ListView而不是Table?难以滚动/选择处理已经完成并且符合您的需求......