- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
在我的应用程序中,我在某些情况下将主页设置为非默认可绘制对象。有时主页向上指示器在更改后应重置为默认图标。
我试过
getSupportActionBar().setHomeAsUpIndicator(0);
根据documentation说将使用主题默认值。当我这样做时,应用程序崩溃并出现以下错误:
05-15 11:12:03.160: E/AndroidRuntime(13021): FATAL EXCEPTION: main
05-15 11:12:03.160: E/AndroidRuntime(13021): Process: xxxxx.yyyyyy.zzzzzz, PID: 13021
05-15 11:12:03.160: E/AndroidRuntime(13021): android.content.res.Resources$NotFoundException: Resource ID #0x0
05-15 11:12:03.160: E/AndroidRuntime(13021): at android.content.res.Resources.getValue(Resources.java:1233)
05-15 11:12:03.160: E/AndroidRuntime(13021): at android.content.res.Resources.getDrawable(Resources.java:756)
05-15 11:12:03.160: E/AndroidRuntime(13021): at android.content.Context.getDrawable(Context.java:402)
05-15 11:12:03.160: E/AndroidRuntime(13021): at android.support.v4.content.ContextCompatApi21.getDrawable(ContextCompatApi21.java:26)
05-15 11:12:03.160: E/AndroidRuntime(13021): at android.support.v4.content.ContextCompat.getDrawable(ContextCompat.java:319)
05-15 11:12:03.160: E/AndroidRuntime(13021): at android.support.v7.internal.widget.TintManager.getDrawable(TintManager.java:133)
05-15 11:12:03.160: E/AndroidRuntime(13021): at android.support.v7.widget.Toolbar.setNavigationIcon(Toolbar.java:754)
05-15 11:12:03.160: E/AndroidRuntime(13021): at android.support.v7.internal.app.ToolbarActionBar.setHomeAsUpIndicator(ToolbarActionBar.java:176)
05-15 11:12:03.160: E/AndroidRuntime(13021): at xxxxx.yyyyyy.zzzzzz.updateHomeIndicator(aaaaa.java:1711)
我知道主题默认值设置正确,因为如果我从未将自定义主页设置为向上指示器,后退箭头显示正常。在尝试调用 setHomeAsUpIndicator(0)
之前,我调用了 setDisplayHomeAsUpEnabled(true)
。
我知道我总是可以将默认主页作为向上指示器 Assets 复制到我的项目中并直接使用该 Assets ,但我想尽可能避免这种解决方法。
谢谢!
扎克
编辑:
我也试过
getSupportActionBar().setHomeAsUpIndicator(null);
这导致没有显示任何图标。
最佳答案
我遵循以下源代码:ToolbarActionBar.setHomeAsUpIndicator()
当我看到源代码时:ContextCompat.getDrawable() ,它说:“值 0 是无效标识符”。
/**
* Return a drawable object associated with a particular resource ID.
* <p>
* Starting in {@link android.os.Build.VERSION_CODES#LOLLIPOP}, the returned
* drawable will be styled for the specified Context's theme.
*
* @param id The desired resource identifier, as generated by the aapt tool.
* This integer encodes the package, type, and resource entry.
* The value 0 is an invalid identifier.
* @return Drawable An object that can be used to draw this resource.
*/
public static final Drawable getDrawable(Context context, int id) {
final int version = Build.VERSION.SDK_INT;
if (version >= 21) {
return ContextCompatApi21.getDrawable(context, id);
} else {
return context.getResources().getDrawable(id);
}
}
我一直关注源代码,最后看到下面的代码,这是你抛出异常的地方:Resources.getValue()
/**
* Return the raw data associated with a particular resource ID.
*
* @param id The desired resource identifier, as generated by the aapt
* tool. This integer encodes the package, type, and resource
* entry. The value 0 is an invalid identifier.
* @param outValue Object in which to place the resource data.
* @param resolveRefs If true, a resource that is a reference to another
* resource will be followed so that you receive the
* actual final resource data. If false, the TypedValue
* will be filled in with the reference itself.
*
* @throws NotFoundException Throws NotFoundException if the given ID does not exist.
*
*/
public void getValue(int id, TypedValue outValue, boolean resolveRefs)
throws NotFoundException {
boolean found = mAssets.getResourceValue(id, 0, outValue, resolveRefs);
if (found) {
return;
}
throw new NotFoundException("Resource ID #0x"
+ Integer.toHexString(id));
}
到目前为止,我看不到对“0”有任何特殊处理。所以,我认为这是您在上面发布的官方文档中的错误。解决此崩溃错误的简单方法是使用现有标识符,就像您的默认图标 ID 一样。
关于android - 如何使用支持操作栏将默认主页显示为向上指示器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30262659/
我刚刚编辑了现有的指标脚本之一,并向其添加了警报功能,而没有中断脚本的其他部分。然而,当我将修改后的脚本添加到图表中时,TradingView 立即重定向到原始脚本/指标。有谁知道这可能是什么问题吗?
我刚刚编辑了现有的指标脚本之一,并向其添加了警报功能,而没有中断脚本的其他部分。然而,当我将修改后的脚本添加到图表中时,TradingView 立即重定向到原始脚本/指标。有谁知道这可能是什么问题吗?
我对在我的 Silverlight 应用程序中包含一个“throbber”很感兴趣,但由于它是如此常见,我想下载一个或遵循一些简单的教程。你能推荐一个可以在这方面指导我的网站,或者可以提供一个供我下载
我正在使用 RAD Studio 4 C++ 构建器,并希望在我的数据源从数据库中获取数据时显示一个指示轮。我知道 FireMonkey 有一个 Indicator wheel 但 c++ build
我正在努力使用 Android ToggleButton,因为我试图更改绿色指示灯。在 Android SDK 文件夹中,我找到了文件 drawable\btn_toggle_bg.xml ,它说
如何在 Android 中显示 Activity 指示器?是否有任何 Android 库给定的方法?如果不是,请告诉我在 Android 中用于显示 Activity 指示器的技术? 最佳答案 And
在 Flutter我如何绘制边框半径选项卡指示器,如下图所示? 下面的代码只能绘制我在 github 中找到的圆形指示器. TabBar( isScrollable: true, contro
有没有办法获得相当于 _merge合并后的指标变量 dplyr ? 类似于 Pandas indicator = True选项基本上告诉你合并是如何进行的(每个数据集有多少匹配项等)。 这是 Pand
如何实现红色数字指示器(例如电子邮件计数通知)? 最佳答案 您正在寻找的是 applicationIconBadgeNumber 属性,它是 UIApplication 的属性。 要从应用中的任何位置
我目前正在为客户开发一个应用程序,他们提出了一个奇怪的请求。该请求涉及将自定义图像作为 ScrollView 的指示器。我什至不确定这是否可能,但如果可以,请让我知道如何做到这一点。 谢谢 最佳答案
有人知道 iPhone UISlider 控件有两个拇指的版本吗?我需要一个允许指定一系列值的控件。 UISlider API 文档暗示这对于标准控件来说是不可能的,所以我想知道是否有人对此有解决方案
我有一个 swing GUI 应用程序,其中包含一个框架类 MainFrame 和一个扩展 JPanel 的类 PanelPlan。我通过使用 BufferedReader 逐行读取文本文件并进行其他
我在 ember 路由中有一些模型。 model() { return this.get('store').query('orders', {}) } 我还有适配器,可以发送 ajax。 型号
我编写了一个程序来替换文件中的字符串。我在 C 中以 r+ 模式打开文件。现在一切正常,但是当程序替换字符串时,文件大小将减小,例如我有一个内容为 的文件 abcDEFgh 我想把DEF换成AA,就变
Currenlty 我在一个项目中工作,我必须从图库中选择多个图像,并且必须将所有选定的图像显示为可滑动 View (viewpager 指示器)。我已经看过很多示例,但在每个示例中我都找到了带有 v
我有一个数据类型为 JSON 的 AJAX 调用,当运行 AJAX 调用时,进度百分比显示在“console.log”中,但在完成上传文件之前达到百分比 100%在磁盘上。如何将百分比与流程的实际进度
我正在使用下面的代码。但当您旋转屏幕或重新运行应用程序时它会起作用。 pager.addOnPageChangeListener(new ViewPager.SimpleOnPageChangeLis
我是 android 的新手。我需要在同步时显示 Activity 指示器。单击按钮时,我将重定向到新 Activity 。在这个新 Activity 中,我正在同步。我需要在单击按钮时显示 Acti
是否可以添加 Activity 指示器作为警报的一部分?我需要这个,因为很难在白色背景中显示警报 View 。请提出想法。 最佳答案 我实际上是在搜索进度对话框...加载指示器 + 消息......
UIActivityIndicatorView *activityView = [[UIActivityIndicatorView alloc] initWithFrame:CGRectMake(0,
我是一名优秀的程序员,十分优秀!