如何在片段中获取元素ID?

时间:2011-10-19 10:41:15

标签: android android-activity fragment

我有1个按钮的布局和片段。

我有

      Button myButton;

     public class MyActivity extends Activity {

 public void   onCreate(){

              myButton = (Button)findViewById(R.id.button);
               ...add my fragment to Tab...
          }

public void onResume() {
    super.onResume();

  sSharedPreferences = PreferenceManager
            .getDefaultSharedPreferences(context);
    String mPreferences = sSharedPreferences.getString(
            getString(R.string.Language), "");

    if (mPreferences.contains("english")) {

        myButton.setText"hello"; 
              }

myButton问题他们= null。   如何在片段中获取元素ID

0 个答案:

没有答案