Can someone explain why this:
<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:stretchColumns="1">
<TableRow
android:id="@+id/upcoming1"
android:clickable="true"> <<<<
<TextView
android:text="-------"
android:gravity="left"
android:padding="3dip" />
Doesn't allow me to click the row?
edit> Maybe the more important question. How can I fetch it using onClick or something similar?
e.g.,
TableRow tr = (TableRow) findViewById(R.id.upcoming1);
Is this close to what needs to be done?