4

我的对话片段有问题。我想使用 android:onClick 属性,因为我认为代码更清晰。

在我的布局中,我有以下声明:

<Button
        android:id="@+id/dialog_new_database_button_cancel"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="@string/button_cancel"
        android:maxLines="1"
        style="?android:attr/buttonBarButtonStyle"
        android:onClick="buttonCancel"
        />

现在我的 DialogFragment

import android.os.Bundle;
import android.support.v4.app.DialogFragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;

public class DialogNewDatabase extends DialogFragment {

    public DialogNewDatabase() {
        // Empty constructor required for DialogFragment
        super();
    }

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
    super.onCreateView (inflater, container, savedInstanceState);
        View view = inflater.inflate(R.layout.dialog_new_database, container);    
        getDialog().setTitle("Hello");
        return view;
    }

    @Override
    public void onCreate(Bundle bundle) {
        setCancelable(true);
        setRetainInstance(true);
        super.onCreate(bundle);

    }

    @Override
    public void onDestroyView() {
        if (getDialog() != null && getRetainInstance())
            getDialog().setDismissMessage(null);
        super.onDestroyView();
    }

    public void buttonCancel (View view) {
        dismiss();
    }

    public void buttonOK (View view) {

    }

}

现在,当我尝试单击取消按钮时,我得到:

java.lang.IllegalStateException: Could not find a method buttonCancel(View) in the activity class android.view.ContextThemeWrapper for onClick handler on view class android.widget.Button with id 'dialog_new_database_button_cancel'
at android.view.View$1.onClick(View.java:3031)
at android.view.View.performClick(View.java:3511)
at android.view.View$PerformClick.run(View.java:14105)
at android.os.Handler.handleCallback(Handler.java:605)
at android.os.Handler.dispatchMessage(Handler.java:92)
at android.os.Looper.loop(Looper.java:137)
at android.app.ActivityThread.main(ActivityThread.java:4482)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:511)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:787)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:554)
at dalvik.system.NativeStart.main(Native Method)
Caused by: java.lang.NoSuchMethodException: buttonCancel [class android.view.View]
at java.lang.Class.getConstructorOrMethod(Class.java:460)
at java.lang.Class.getMethod(Class.java:915)
at android.view.View$1.onClick(View.java:3024)
... 11 more

任何的想法?这可能与我使用 import android.support.v4.app.DialogFragment (support v4) 的事实有关吗?如何解决这个问题(我仍然更喜欢在 xml 布局中使用 android:onClick)。

4

3 回答 3

4

我会尝试另一种对我来说很好的方法:

  1. 在您的片段中实现 OnClickListener:

    public class DialogNewDatabase extends DialogFragment implements OnClickListener`
    
  2. 在 xml 中有一个具有唯一 id 的按钮,这不需要android:clickable

    <Button  android:id="@+id/dialog_new_database_button_cancel" />
    
  3. 覆盖onClick()片段中的方法并在单击时插入反应:

    public void onClick(View v) {       
      switch (v.getId()) {
        case R.id.dialog_new_database_button_cancel:
            // your stuff here
            this.dismiss();
    
            break;          
        default:                
            break;
       }
    }   
    
  4. 导入必要的:

    import android.view.View.OnClickListener; 
    
  5. 在按钮上启动 onClickListener:

    private Button bCancel = null;
    bCancel = (Button) findViewById(R.id.dialog_new_database_button_cancel);
    bCancel.setOnClickListener(this);
    // it is possible that you might need the refrence to the view.
    // replace 2nd line with (Button) getView().findViewById(...);
    

    这样,您可以在同一个 onClick 方法中处理更多可点击按钮。您只需要使用可点击小部件的正确 ID 添加更多案例。

于 2013-10-15T13:53:30.750 回答
2

我认为这与支持片段无关。

问题似乎源于您正在注册一个 onClick on XML,该 XML 是基于在单击时绑定片段的活动而触发的。

由于您的“buttonCancel”方法在活动中不存在(因为它在片段内),所以它失败了。

我不认为这确实是一个理想的解决方案,但是您可以在您的活动上注册您的“buttonCancel”方法以使该错误消失,并使在活动上注册的“buttonCancel”方法仅调用存在于片段,以防您想将您的操作/视图行为保留在片段中。

于 2013-10-15T12:29:53.720 回答
-1

尝试:

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
super.onCreateView (inflater, container, savedInstanceState);
    View view = inflater.inflate(R.layout.dialog_new_database, container);    
    getDialog().setTitle("Hello");
    return view;

    private void buttonCancel (View view) {
    dismiss();
    }
    private void buttonOK (View view) {
    }
}
于 2013-10-15T12:51:20.437 回答