私はICS 4.1+を使用しており、テーブルセルを構成するLinearLayout内に以下のレイアウトがあります。しかし、EditText id を選択するとフォーカスが入りますが、入力は許可されません。
<RelativeLayout android:id="@+id/options_bar" android:layout_width="fill_parent" android:layout_height="110dip" > <!-- android:layout_marginBottom="-150dip" -->
<EditText android:layout_marginLeft="15dip" android:layout_centerVertical="true" android:id="@+id/msg" android:editable="true" android:background="#D8D8D8" android:textColor="#000000" android:text="Reply to the tweet" android:layout_height="90dip" android:layout_width="170dip"
android:layout_alignParentLeft="true" android:layout_marginRight="30dip"/>
<Button android:layout_width="wrap_content" android:layout_height="wrap_content"
android:layout_alignParentRight="true" android:layout_centerVertical="true" android:layout_toLeftOf="@id/msg"
android:text="Confirm" android:id="@+id/confirm_btn"/>
<Button android:id="@+id/cancel_btn" android:layout_width="wrap_content" android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:text="Cancel" android:layout_toLeftOf="@id/confirm_btn"/>