我可以将 NavigationView 与 SherlockFragmentActivity 一起使用吗?
Can I use NavigationView with SherlockFragmentActivity?
我想使用 NavigationView
,Android 设计支持库的一部分,而不是 ListView
。
我使用 SherlockFragmentActivity
ABS 框架 的一部分,我的问题是如何使用 NavigationView
带 ABS(不带 usnig Appcompact)?
否,NavigationView requires AppCompat as per the release blog post:
Note that as the Design library depends on the Support v4 and AppCompat Support Libraries
因为它使用 AppCompat 在所有 API 关卡中实现一致的主题。
您可以使用 AppCompatDelegate 在 SherlockFragmentActivity 中启用 AppCompat。一个官方的例子是:https://github.com/android/platform_development/blob/master/samples/Support7Demos/src/com/example/android/supportv7/app/AppCompatPreferenceActivity.java
我想使用 NavigationView
,Android 设计支持库的一部分,而不是 ListView
。
我使用 SherlockFragmentActivity
ABS 框架 的一部分,我的问题是如何使用 NavigationView
带 ABS(不带 usnig Appcompact)?
否,NavigationView requires AppCompat as per the release blog post:
Note that as the Design library depends on the Support v4 and AppCompat Support Libraries
因为它使用 AppCompat 在所有 API 关卡中实现一致的主题。
您可以使用 AppCompatDelegate 在 SherlockFragmentActivity 中启用 AppCompat。一个官方的例子是:https://github.com/android/platform_development/blob/master/samples/Support7Demos/src/com/example/android/supportv7/app/AppCompatPreferenceActivity.java