当只有一个标题时,在PreferenceActivity中跳过标题

时间:2012-05-29 15:57:48

标签: android preferenceactivity

我在我的应用程序中添加了preference-headers,因此在Honeycomb和平板电脑大小的ICS上,首选项屏幕看起来不会坏掉。但是,我目前只有一个标题,因此您必须在电话大小的设备上只有一个条目点击标题屏幕。有没有一种简单的方法可以告诉android在只有一个标题时跳过标题屏幕,但仍然可以在大屏幕上显示它?

看起来股票联系人应用程序成功完成了这项工作,但我浏览了source并且无法弄清楚它是如何做到的。

4 个答案:

答案 0 :(得分:61)

您可以通过将其中一个PreferenceFragments设置为默认值来跳过标题。

当您查看PreferenceActivity.java来源时,您会发现这两个额外内容:

/**
 * When starting this activity, the invoking Intent can contain this extra
 * string to specify which fragment should be initially displayed.
 */
public static final String EXTRA_SHOW_FRAGMENT = ":android:show_fragment";

/**
 * When starting this activity, the invoking Intent can contain this extra
 * boolean that the header list should not be displayed.  This is most often
 * used in conjunction with {@link #EXTRA_SHOW_FRAGMENT} to launch
 * the activity to display a specific fragment that the user has navigated
 * to.
 */
public static final String EXTRA_NO_HEADERS = ":android:no_headers";

现在只需将这两个额外内容添加到调用PrefenceActivity的intent中,并指定PreferenceFragment,默认情况下应显示如下:

Intent intent = new Intent( this, Preferences.class );
intent.putExtra( PreferenceActivity.EXTRA_SHOW_FRAGMENT, PreferencesFragment.class.getName() );
intent.putExtra( PreferenceActivity.EXTRA_NO_HEADERS, true );

答案 1 :(得分:4)

利用jenzz提到的EXTRA_SHOW_FRAGMENT,您可以操纵Activity的意图,如下所示:

@Override
protected void onCreate(Bundle savedInstanceState) {
  // By default, show MainPreferences
  Intent intent = getIntent();
  if (intent.getStringArrayExtra(EXTRA_SHOW_FRAGMENT) == null) {
    getIntent().putExtra(EXTRA_SHOW_FRAGMENT, MainPreferences.class.getName());
  }

  super.onCreate(savedInstanceState);
}

答案 2 :(得分:3)

您可以在活动中删除此代码。

     public void onBuildHeaders(List<Header> target) {
        loadHeadersFromResource(R.xml.pref_general, target);
    }

并替换你的片段:

public class SettingsActivity extends AppCompatPreferenceActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
           getFragmentManager().beginTransaction().replace(android.R.id.content,
                new GeneralPreferenceFragment()).commit();

    }

    @TargetApi(Build.VERSION_CODES.HONEYCOMB)
    public static class GeneralPreferenceFragment extends PreferenceFragment {
        @Override
        public void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            addPreferencesFromResource(R.xml.pref_general);

        }

    }

}

答案 3 :(得分:1)

我不知道你是否可以专门跳过标题,但这就是我所做的。

我创建了2个类,一个用于超大屏幕尺寸,另一个用于其余类。 EditPreferences.class加载我的普通preferences.xml,EditPreferencesXLarge.class加载preference-headers xml。

public boolean onOptionsItemSelected(MenuItem item) {
    final int SCREENLAYOUT_SIZE_XLARGE = 4;
    final int HONEYCOMB = 11;
    int screenSize = getResources().getConfiguration().screenLayout & Configuration.SCREENLAYOUT_SIZE_MASK;

    switch(item.getItemId())
    {
        case R.id.item_prefs:
            if (Build.VERSION.SDK_INT < HONEYCOMB) {
                startActivity(new Intent(this, EditPreferences.class));
            }
            else if (screenSize < SCREENLAYOUT_SIZE_XLARGE) {
                startActivity(new Intent(this, EditPreferences.class));
            }
            else {
                startActivity(new Intent(this, EditPreferencesXLarge.class));
            }

            return true;
    }

    return (super.onOptionsItemSelected(item));
}