如何使用android.support包替换视图?

时间:2013-07-18 19:47:24

标签: android fragment android-preferences android-support-library

我正在尝试替换MainActivity中的视图,以便一旦应用程序打开,我的首选项片段就会出现。一切正常,直到我尝试使用android.support.v4.app.Fragment库来完成相同的任务,以支持API级别10的设备。在我的.replace(android.R.id.content,new SettingsFragment())调用,我得到以下错误:" FragmentTransaction类型中的方法replace(int,Fragment)不适用于参数(int,SettingsFragment)"。我不知道为什么这是一个问题,因为我的设置片段扩展了PreferenceFragment,它扩展了Fragment。

非常感谢所有帮助。

public class MainActivity extends FragmentActivity {

@Override
public View onCreateView(String name, Context context, AttributeSet attrs) {

    getSupportFragmentManager().beginTransaction()
    .replace(android.R.id.content, new SettingsFragment()) //SettingFragment is my class that manages the preferences
    .commit();

     Intent intent = new Intent(this, MainService.class);
     startService(intent); 
    return super.onCreateView(name, context, attrs);
}

 @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.main, menu);
        return true;
    }
}

下一课:

public class SettingsFragment extends PreferenceFragment{

ListPreference notificationDrawerUnitOfMeasurePreference;
ListPreference notificationAreaUnitOfMeasurePreference;

@Override
public void onCreate(Bundle savedInstanceState) {
    // TODO Auto-generated method stub
    super.onCreate(savedInstanceState);
    addPreferencesFromResource(R.xml.preferences);

    notificationDrawerUnitOfMeasurePreference = (ListPreference) findPreference("pref_key_measurement_unit");
    notificationAreaUnitOfMeasurePreference = (ListPreference) findPreference("pref_key_measurement_unit_notification_area");

    notificationDrawerUnitOfMeasurePreference.setOnPreferenceChangeListener(notificationDrawerUnitOfMeasurePreferenceListener);
    notificationAreaUnitOfMeasurePreference.setOnPreferenceChangeListener(notificationAreaUnitOfMeasurePreferenceListener);

    notificationDrawerUnitOfMeasurePreference.setSummary(notificationDrawerUnitOfMeasurePreference.getValue().toString());
    notificationAreaUnitOfMeasurePreference.setSummary(notificationAreaUnitOfMeasurePreference.getValue().toString());
}

private OnPreferenceChangeListener notificationDrawerUnitOfMeasurePreferenceListener = new OnPreferenceChangeListener(){

    @Override
    public boolean onPreferenceChange(Preference preference, Object newValue) {
        ((ListPreference) preference).setValue(newValue.toString());
        preference.setSummary(newValue.toString());
        return false;
    }


};

private OnPreferenceChangeListener notificationAreaUnitOfMeasurePreferenceListener = new OnPreferenceChangeListener(){

    @Override
    public boolean onPreferenceChange(Preference preference, Object newValue) {
        ((ListPreference) preference).setValue(newValue.toString());
        preference.setSummary(newValue.toString());
        return false;
    }


};


}

2 个答案:

答案 0 :(得分:3)

问题似乎是您的SettingsFragment扩展了PreferenceFragment,而PreferenceFragment不在兼容性库中。因此,当它说你的方法调用“不适用于参数(int,SettingsFragment)”时,它意味着它需要一个support.v4.app.Fragment并且你给它一个android.app.Fragment。

不幸的是,到目前为止,Google还没有将PreferenceFragment添加到兼容性库中。

可以找到关于PreferenceFragment和兼容性库的非常详尽的讨论here

答案 1 :(得分:0)

如Kris所述,PreferenceFragment尚未成为兼容性库的一部分。在此之前,您可以使用UnifiedPreferences

等库