1

在我的 android 片段中,我对我的应用程序是否在平板电脑上运行进行了以下简单检查(在平板电脑上我打开了 3 个视图,在手机上看不到视图 2 和 3,只看到第一个)

boolean mDualPane;
View detailsFrame = getActivity().findViewById(R.id.content1);
mDualPane = detailsFrame != null && detailsFrame.getVisibility() == View.VISIBLE;

这在片段本身中工作正常,但我需要在许多片段中进行完全相同的检查,所以我想在我的“MiscMethods”类中使用它,用于多个类中的常用方法。现在我班上的同一个鳕鱼看起来像这样:

public class MiscMethods{    
public static boolean landscapeChecker(){
    boolean mDualPane;
    View detailsFrame = getActivity().findViewById(R.id.content1);
    mDualPane = detailsFrame != null && detailsFrame.getVisibility() == View.VISIBLE;
    return mDualPane;   
}
}

对于 MiscMethods 类型,getActivity(如果我删除了 findViewById)是未定义的。

现在我有一个应用程序类的上下文,像这里

public static void ErrorToast(int errorCode) {
    String errorString = null;
    switch (errorCode) {
    case 1:
        errorString = App.getContext().getString(R.string.error_tooManyFieldsEmpty);
        break;
    case 2:
        errorString = App.getContext().getString(R.string.error_featureComingSoon);
        break;
    case 3:
        errorString = App.getContext().getString(R.string.error_SwitchBreak);
        break;
    default:
        errorString="Wrong Error Code";
        break;
    }
    Toast errormsg = Toast.makeText(App.getContext(), errorString, Toast.LENGTH_SHORT);
    errormsg.setGravity(Gravity.CENTER, 0, 0);
    errormsg.show();
}

但是这个 App.getContext() 也无济于事。

我怎样才能解决这个问题?

4

2 回答 2

3

看起来您正在寻找一个快速而肮脏的解决方案,所以这里有两个:

  • 更改方法签名以将活动作为参数:

    public static boolean landscapeChecker(Activity activity).

    在方法中,使用传入的activity代替getActivity(). 从您的各种活动中调用它,例如boolean mDualPane = landscapeChecker(this).

  • 子类Activity化并将方法放在那里。对于此解决方案,您将创建一个类MyActivity extends Activity,然后进行各种活动extend MyActivity而不是extend Activity. 在方法中,使用this代替getActivity()

于 2012-10-03T01:07:37.283 回答
0

您只需在 oncreate 之前声明 MainActivity 静态元素。在此之后在底部创建一个方法;

static TextView textView;

@Override
    protected void onCreate(Bundle savedInstanceState) {
.....................................................

textView = (TextView) findViewById(R.id.texview);
}

public static void upTex(String up) {


        textView.setText(up);
    }


}

//other file class
public class other{

   public void method(){
     upText("jaja");
 }
于 2017-06-28T16:19:19.037 回答