1

在花了足够的时间失败后,我将其发布在这里寻求帮助。我有一个从以下 FragmentActivity 调用的 ListFragment。在布局中,顶部有一个提交按钮,用户可以滚动列表并在填写完信息后按下提交按钮。但是我不能点击这个提交按钮。它永远不会得到焦点。我该如何解决?

谢谢你的帮助。

我有这个 FragmentActivity:

public class SurveyFragmentAnchor extends FragmentActivity {

Button submit; 

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.my_survey_fragment);
    setTitle("Feedback and Survey");

    submit = (Button) findViewById(R.id.submit_button);

    submit.setOnClickListener(new OnClickListener() {
        @Override
        public void onClick(View v) {
             Log.v("SURVEY", "Button pressed");
        }
    });
}
}

这是布局:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center"
android:orientation="vertical"
android:paddingTop="4dp" >

<TableLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:background="#e5e5e5">

    <TableRow
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:background="#ee000000" >

        <TextView
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_gravity="center"
            android:layout_marginLeft="5dp"
            android:layout_marginTop="5dp"
            android:paddingBottom="10dp"
            android:text="Rating (1-5) 5= Excellent, 4=Very good, 3=Good,\n2= Satisfactory, 1= Needs Improvement"
            android:textColor="#FFF" />

            <Button
                android:background="@drawable/button_blue2"
                android:textColor="#FFF"
                android:id="@+id/submit_button"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentRight="true"
                android:layout_alignTop="@+id/my_survey_fragment"
                android:text="Submit" />


   </TableRow>
</TableLayout>      

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <ListView
        android:id="@android:id/list"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:cacheColorHint="#00000000"
        android:drawSelectorOnTop="false" >
    </ListView>
</LinearLayout>

<fragment
    android:name="com.survey.MySurvey"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_marginTop="47dp"
    android:id="@+id/my_survey_fragment">
</fragment>

4

1 回答 1

0

尝试在按钮上使用这些字段:

android:focusable="true"
android:focusableInTouchMode="true" 
于 2015-03-25T17:17:28.373 回答