操作栏兼容性已添加到支持库,修订版18中。它现在具有ActionBarActivity
类,用于在旧版Android上使用Action Bar创建活动。
有没有办法将支持库中的操作栏添加到PreferenceActivity
?
以前我使用ActionBarSherlock并且SherlockPreferenceActivity
。
答案 0 :(得分:128)
编辑:在appcompat-v7 22.1.0中,Google将AppCompatDelegate抽象类添加为可用于将AppCompat支持扩展到任何活动的委托。
像这样使用:
...
import android.support.v7.app.ActionBar;
import android.support.v7.app.AppCompatDelegate;
import android.support.v7.widget.Toolbar;
...
public class SettingsActivity extends PreferenceActivity {
private AppCompatDelegate mDelegate;
@Override
protected void onCreate(Bundle savedInstanceState) {
getDelegate().installViewFactory();
getDelegate().onCreate(savedInstanceState);
super.onCreate(savedInstanceState);
}
@Override
protected void onPostCreate(Bundle savedInstanceState) {
super.onPostCreate(savedInstanceState);
getDelegate().onPostCreate(savedInstanceState);
}
public ActionBar getSupportActionBar() {
return getDelegate().getSupportActionBar();
}
public void setSupportActionBar(@Nullable Toolbar toolbar) {
getDelegate().setSupportActionBar(toolbar);
}
@Override
public MenuInflater getMenuInflater() {
return getDelegate().getMenuInflater();
}
@Override
public void setContentView(@LayoutRes int layoutResID) {
getDelegate().setContentView(layoutResID);
}
@Override
public void setContentView(View view) {
getDelegate().setContentView(view);
}
@Override
public void setContentView(View view, ViewGroup.LayoutParams params) {
getDelegate().setContentView(view, params);
}
@Override
public void addContentView(View view, ViewGroup.LayoutParams params) {
getDelegate().addContentView(view, params);
}
@Override
protected void onPostResume() {
super.onPostResume();
getDelegate().onPostResume();
}
@Override
protected void onTitleChanged(CharSequence title, int color) {
super.onTitleChanged(title, color);
getDelegate().setTitle(title);
}
@Override
public void onConfigurationChanged(Configuration newConfig) {
super.onConfigurationChanged(newConfig);
getDelegate().onConfigurationChanged(newConfig);
}
@Override
protected void onStop() {
super.onStop();
getDelegate().onStop();
}
@Override
protected void onDestroy() {
super.onDestroy();
getDelegate().onDestroy();
}
public void invalidateOptionsMenu() {
getDelegate().invalidateOptionsMenu();
}
private AppCompatDelegate getDelegate() {
if (mDelegate == null) {
mDelegate = AppCompatDelegate.create(this, null);
}
return mDelegate;
}
}
不再是黑客攻击。代码取自AppCompatPreferenceActivity.java。
答案 1 :(得分:78)
目前无法用AppCompat实现。我在内部打开了一个错误。
答案 2 :(得分:24)
我设法创建了一个类似于Google Play商店使用的解决方法。 Link to Original Answer
非常类似于您自己的代码,但添加了xml以允许设置标题:
继续使用PreferenceActivity
:
settings_toolbar.xml :
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/toolbar"
app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="?attr/actionBarSize"
app:navigationContentDescription="@string/abc_action_bar_up_description"
android:background="?attr/colorPrimary"
app:navigationIcon="?attr/homeAsUpIndicator"
app:title="@string/action_settings"
/>
SettingsActivity.java :
public class SettingsActivity extends PreferenceActivity {
@Override
protected void onPostCreate(Bundle savedInstanceState) {
super.onPostCreate(savedInstanceState);
LinearLayout root = (LinearLayout)findViewById(android.R.id.list).getParent().getParent().getParent();
Toolbar bar = (Toolbar) LayoutInflater.from(this).inflate(R.layout.settings_toolbar, root, false);
root.addView(bar, 0); // insert at top
bar.setNavigationOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
finish();
}
});
}
}
Result :
正如here指出的那样,Gingerbread Devices在这一行上返回NullPointerException:
LinearLayout root = (LinearLayout)findViewById(android.R.id.list).getParent().getParent().getParent();
SettingsActivity.java :
public class SettingsActivity extends PreferenceActivity {
@Override
protected void onPostCreate(Bundle savedInstanceState) {
super.onPostCreate(savedInstanceState);
Toolbar bar;
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.ICE_CREAM_SANDWICH) {
LinearLayout root = (LinearLayout) findViewById(android.R.id.list).getParent().getParent().getParent();
bar = (Toolbar) LayoutInflater.from(this).inflate(R.layout.settings_toolbar, root, false);
root.addView(bar, 0); // insert at top
} else {
ViewGroup root = (ViewGroup) findViewById(android.R.id.content);
ListView content = (ListView) root.getChildAt(0);
root.removeAllViews();
bar = (Toolbar) LayoutInflater.from(this).inflate(R.layout.settings_toolbar, root, false);
int height;
TypedValue tv = new TypedValue();
if (getTheme().resolveAttribute(R.attr.actionBarSize, tv, true)) {
height = TypedValue.complexToDimensionPixelSize(tv.data, getResources().getDisplayMetrics());
}else{
height = bar.getHeight();
}
content.setPadding(0, height, 0, 0);
root.addView(content);
root.addView(bar);
}
bar.setNavigationOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
finish();
}
});
}
}
上述任何问题都告诉我!
更新2:绘制替代方法
正如许多开发人员指出的那样PreferenceActivity
不支持元素的着色,但是通过利用一些内部类,你可以实现这一点。直到这些类被删除。 (使用appCompat support-v7 v21.0.3工作)。
添加以下导入:
import android.support.v7.internal.widget.TintCheckBox;
import android.support.v7.internal.widget.TintCheckedTextView;
import android.support.v7.internal.widget.TintEditText;
import android.support.v7.internal.widget.TintRadioButton;
import android.support.v7.internal.widget.TintSpinner;
然后覆盖onCreateView
方法:
@Override
public View onCreateView(String name, Context context, AttributeSet attrs) {
// Allow super to try and create a view first
final View result = super.onCreateView(name, context, attrs);
if (result != null) {
return result;
}
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.LOLLIPOP) {
// If we're running pre-L, we need to 'inject' our tint aware Views in place of the
// standard framework versions
switch (name) {
case "EditText":
return new TintEditText(this, attrs);
case "Spinner":
return new TintSpinner(this, attrs);
case "CheckBox":
return new TintCheckBox(this, attrs);
case "RadioButton":
return new TintRadioButton(this, attrs);
case "CheckedTextView":
return new TintCheckedTextView(this, attrs);
}
}
return null;
}
Result:
AppCompat 22.1引入了新的有色元素,这意味着不再需要利用内部类来实现与上次更新相同的效果。而是遵循这一点(仍然覆盖onCreateView
):
@Override
public View onCreateView(String name, Context context, AttributeSet attrs) {
// Allow super to try and create a view first
final View result = super.onCreateView(name, context, attrs);
if (result != null) {
return result;
}
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.LOLLIPOP) {
// If we're running pre-L, we need to 'inject' our tint aware Views in place of the
// standard framework versions
switch (name) {
case "EditText":
return new AppCompatEditText(this, attrs);
case "Spinner":
return new AppCompatSpinner(this, attrs);
case "CheckBox":
return new AppCompatCheckBox(this, attrs);
case "RadioButton":
return new AppCompatRadioButton(this, attrs);
case "CheckedTextView":
return new AppCompatCheckedTextView(this, attrs);
}
}
return null;
}
嵌套的首选屏幕
很多人在嵌套<PreferenceScreen />
中包含工具栏时遇到问题但是,我找到了解决方案! - 经过大量的反复试验!
将以下内容添加到SettingsActivity
:
@SuppressWarnings("deprecation")
@Override
public boolean onPreferenceTreeClick(PreferenceScreen preferenceScreen, Preference preference) {
super.onPreferenceTreeClick(preferenceScreen, preference);
// If the user has clicked on a preference screen, set up the screen
if (preference instanceof PreferenceScreen) {
setUpNestedScreen((PreferenceScreen) preference);
}
return false;
}
public void setUpNestedScreen(PreferenceScreen preferenceScreen) {
final Dialog dialog = preferenceScreen.getDialog();
Toolbar bar;
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.ICE_CREAM_SANDWICH) {
LinearLayout root = (LinearLayout) dialog.findViewById(android.R.id.list).getParent();
bar = (Toolbar) LayoutInflater.from(this).inflate(R.layout.settings_toolbar, root, false);
root.addView(bar, 0); // insert at top
} else {
ViewGroup root = (ViewGroup) dialog.findViewById(android.R.id.content);
ListView content = (ListView) root.getChildAt(0);
root.removeAllViews();
bar = (Toolbar) LayoutInflater.from(this).inflate(R.layout.settings_toolbar, root, false);
int height;
TypedValue tv = new TypedValue();
if (getTheme().resolveAttribute(R.attr.actionBarSize, tv, true)) {
height = TypedValue.complexToDimensionPixelSize(tv.data, getResources().getDisplayMetrics());
}else{
height = bar.getHeight();
}
content.setPadding(0, height, 0, 0);
root.addView(content);
root.addView(bar);
}
bar.setTitle(preferenceScreen.getTitle());
bar.setNavigationOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
dialog.dismiss();
}
});
}
PreferenceScreen
之所以如此痛苦是因为它们基于包装器对话框,因此我们需要捕获对话框布局以将工具栏添加到其中。
通过设计导入Toolbar
不允许在v21之前的设备中进行高程和阴影,因此如果您希望对Toolbar
进行提升,则需要将其包含在{{1}中}}:
`settings_toolbar.xml:
AppBarLayout
不要忘记在<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<android.support.v7.widget.Toolbar
.../>
</android.support.design.widget.AppBarLayout>
文件中添加设计支持库作为依赖项:
build.gradle
我已经调查了报告的重叠问题,我无法重现这个问题。
上面使用的完整代码产生以下内容:
如果我遗失了某些内容,请通过this repo告诉我,我会进行调查。
答案 3 :(得分:12)
找到一个基于support-v4片段的PreferenceFragment实现:
https://github.com/kolavar/android-support-v4-preferencefragment
编辑:我刚刚测试过,它的工作效果很好!
答案 4 :(得分:3)
至少对我来说,将PreferenceActivity
与ABC集成是不可能的。我尝试了两种可能但我没有找到的可能性:
ActionBarPreferenceActivity
延伸PreferenceActivity
。执行此操作后,您将受到ActionBarActivityDelegate.createDelegate(ActionBarActivity activity)
的限制。您还需要实现无法访问的ActionBar.Callbacks
ActionBarPreferenceActivity
延伸ActionBarActivity
。这种方法需要重写一个全新的PreferenceActivity
,PreferenceManager
,可能是PreferenceFragment
,这意味着您需要访问隐藏的类,例如com.android.internal.util.XmlUtils
对此的解决方案只能来自Google开发人员实施可以添加到任何活动的ActionBarWrapper
。
如果您确实需要偏好活动,我现在的建议是ActionBarSherlock
。
但是,我设法实现了它here。
答案 5 :(得分:3)
OP希望知道我们如何将MenuItem
放在ActionBar
PreferenceActivity
之前用于预蜂窝,因为Android的支持库有一个不允许这种情况发生的错误
我找到了一种比已经提出的更清洁的方法来实现目标(并在Android Docs中找到它):
android:parentActivityName
的逻辑父类的类名 活动。这里的名称必须与给出的类名相匹配 对应元素的android:name属性。
系统读取此属性以确定应该是哪个活动 当使用按下操作栏中的向上按钮时启动。该 系统也可以使用这些信息来合成一个后栈 使用TaskStackBuilder进行活动。
要支持API级别4 - 16,您还可以声明父级活动 使用指定值的元素 “android.support.PARENT_ACTIVITY”。例如:
<activity android:name="com.example.app.ChildActivity" android:label="@string/title_child_activity" android:parentActivityName="com.example.myfirstapp.MainActivity" > <!-- Parent activity meta-data to support API level 4+ --> <meta-data android:name="android.support.PARENT_ACTIVITY" android:value="com.example.app.MainActivity" /> </activity>
现在执行您在onOptionsItemSelected()
中通常会执行的操作。由于它是Android Docs的一部分,因此没有副作用。
快乐的编码。 :)
如果您定位Lollipop,此解决方案将不再有效。如果你正在使用AppCompat,this回答是你应该寻找的。 p>
答案 6 :(得分:1)
我可以使用android.app.Actionbar
获得getActionBar()
。它首先返回一个空值...然后我转到清单并将主题更改为:
android:theme="@style/Theme.AppCompat"
然后我又能够拥有动作栏。我假设这只适用于某些构建级别。因此,您可能需要检查内部版本号或检查返回的值是否为null。
对我来说没关系,因为我正在处理的应用是ICS/4.0
+。
答案 7 :(得分:0)
现在已经发布了这个问题的正式答案。它是v7/v14 Preference Support库。
有关如何使用它的讨论,请参阅How to use the v7/v14 Preference Support library?。