- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
Activity 开始。这些代码框架顺利通过。
// Initialize array adapters. One for already paired devices and
// one for newly discovered devices
mPairedDevicesArrayAdapter = new ArrayAdapter<String>(this, 0x7f060008);
mNewDevicesArrayAdapter = new ArrayAdapter<String>(this, 0x7f06000b);
// Find and set up the ListView for paired devices
ListView pairedListView = (ListView) findViewById(R.id.paired_devices);
pairedListView.setAdapter(mPairedDevicesArrayAdapter);
pairedListView.setOnItemClickListener(mDeviceClickListener);
构造函数顺利通过。应用程序崩溃并显示错误消息:
10-12 17:07:59.960: E/AndroidRuntime(11557): FATAL EXCEPTION: main
10-12 17:07:59.960: E/AndroidRuntime(11557): android.content.res.Resources $NotFoundException: Resource ID #0x7f060008 type #0x12 is not valid
XML资源文件如下:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/device_list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center_vertical|center_horizontal"
android:orientation="vertical" >
<EditText
android:id="@+id/xaccel"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="fill_horizontal|center_vertical"
android:gravity="center_vertical|center_horizontal"
android:inputType="text"
android:text="@string/paired_devices" >
</EditText>
<ListView
android:id="@+id/paired_devices"
android:layout_width="match_parent"
android:layout_height="128dp"
android:layout_weight="0.04" >
</ListView>
<Button
android:id="@+id/button_scan"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/scanning" />
<EditText
android:id="@+id/title_new_devices"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical|center_horizontal"
android:inputType="text"
android:text="@string/other_available" >
</EditText>
<ListView
android:id="@+id/new_devices"
android:layout_width="match_parent"
android:layout_height="122dp"
android:layout_weight="0.70" >
</ListView>
</LinearLayout>
R.java如下:
package medynets.dmytro;
public final class R {
public static final class attr {
}
public static final class drawable {
public static final int ic_launcher=0x7f020000;
}
public static final class id {
public static final int BluCar=0x7f060000;
public static final int button_connect=0x7f060002;
public static final int button_forward=0x7f060004;
public static final int button_light=0x7f060003;
public static final int button_reverse=0x7f060005;
public static final int button_scan=0x7f060009;
public static final int device_list=0x7f060007;
public static final int new_devices=0x7f06000b;
public static final int paired_devices=0x7f060008;
public static final int textView1=0x7f060001;
public static final int title_new_devices=0x7f06000a;
public static final int xaccel=0x7f060006;
}
public static final class layout {
public static final int activity_blucar=0x7f030000;
public static final int device_list=0x7f030001;
}
public static final class string {
public static final int app_name=0x7f04000e;
public static final int bt_not_enabled_leaving=0x7f04000f;
public static final int connect=0x7f040003;
public static final int connected=0x7f040010;
public static final int device_list_activity=0x7f04000d;
public static final int devices=0x7f040012;
public static final int disconnected=0x7f040011;
public static final int forward=0x7f040005;
public static final int ledOFF=0x7f04000b;
public static final int ledON=0x7f04000a;
public static final int light=0x7f040004;
public static final int no_bt_device=0x7f04000c;
public static final int none_found=0x7f040008;
public static final int none_paired=0x7f040009;
public static final int other_available=0x7f040007;
public static final int paired_devices=0x7f040001;
public static final int reverse=0x7f040006;
public static final int scanning=0x7f040002;
public static final int select_device=0x7f040000;
}
public static final class style {
/**
Base application theme, dependent on API level. This theme is replaced
by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
Theme customizations available in newer API levels can go in
res/values-vXX/styles.xml, while customizations related to
backward-compatibility can go here.
*/
public static final int AppBaseTheme=0x7f050000;
/** Application theme.
All customizations that are NOT specific to a particular API-level can go here.
*/
public static final int AppTheme=0x7f050001;
}
}
请帮帮我。我不知道。我会根据您的要求发送任何其他信息。
最佳答案
我回答我自己的问题。我添加到源代码:
Import android.R;
然后所有指向RI的链接我都改为:
medynets.dmytro.R
然后代码:
mPairedDevicesArrayAdapter = new ArrayAdapter<String>(this,medynets.dmytro.R.layout.paired_devices);
mNewDevicesArrayAdapter = new ArrayAdapter<String>(this, medynets.dmytro.R.layout.new_devices);
我改为:
mPairedDevicesArrayAdapter = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_multiple_choice);
mNewDevicesArrayAdapter = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_multiple_choice);
毕竟应用程序运行。
关于java - 资源 <资源 ID 的编号> 类型 0x12 无效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19336057/
我使用 Faker gem 来播种某些数据。我怎样才能设置最大。假公司名称的长度,如何设置假号码的范围? name = Faker::Company.name 这里我想包括最大长度,因为名称对最大长
我试图实现一种方法,在该方法中我创建一个记分板(while 循环)并按某个数字字段(点)对获取的结果进行排序。但我需要实现的是如下 rank----username--point 1st------t
如何在 ListView (vsReport) 中对项目进行编号?现在我有类似的东西: Item := ListView1.Items.Add; Item.Caption :=inttostr(Ite
我正在尝试使用几个按钮在红色和绿色之间切换,我已经浏览了 Jquery 文档,但我似乎无法弄清楚这个。 您可以在我的代码片段中看到,当我单击按钮时,所有按钮都会变成不同的颜色。 而且必须有一种更短的方
是否可以在 GROUP_CONCAT 中进行编号 喜欢 如果,来自 GROUP_CONCAT(empnam SEPARATOR ', ') 我有一套, 我需要 我试过跟随,但没有得到想要的结
在 Linux 中,如何使用用户指定的事件编号创建输入事件接口(interface)并将其映射到特定的设备事件? 我正在使用 gpio-keys 驱动程序来翻译键盘上的按键操作。我定义了要在我的板配置
对于低级应用程序,我在编译时将某种索引定义为一种类型: template class Idx{ using TYPE = T_; static const int IDX = IDX_; }
请问如何设置这种格式的编号: 1) number 1 2) number 2 3) ... 在 HTML 中? 我只找到了一种获取这种格式的方法: 1. number 1 2. number 2 3.
对于我的研究,我需要很少的数据,其中之一是前一次提交的 SHA 编号,即如果我提供特定的提交编号/SHA 编号,我应该能够获得它之前的 SHA 编号。 帮我用 git 命令来获得相同的结果。 最佳答案
我需要询问何时按下数字 1 键,而不是在数字键盘上,而是在 Q 上方的数字 1(试图使这尽可能清楚)。 我已经浏览了 Keys 数组上所有可用的键,但没有一个匹配我正在寻找的键。 有没有办法做到这一点
我正在尝试使用 NAnt 任务设置构建服务器。我有几个想要构建的 Git 存储库,但我在结果的版本控制方面遇到了问题。 如何对库 (dll) 进行版本控制,以便每个构建都使用一个数字来表示每个版本?我
我有一个如下所示的表格: +-------+--------+--------+ | Grp | Party | Member | +-------+--------+--------+ | F
我正在使用 SQL Server 2008。我在查询中返回了这些数据,看起来非常像按 Day 和 ManualOrder 排序的... ID Day ManualOrder Lat L
区域:Silverlight 中的文本框 问题:我需要知道当前编辑的是什么“行号”。 我试过:作为一种解决方法,我尝试使用 textBox.Split("\r") 进行拆分,并计算 Regex 上具有
提前致歉,我不确定如何将 null 值添加到 pandas 数据框,所以我在列表中放置了“无”。我有一个具有以下值的数据框: None, None, 50,60,70,80,90,None,None,
我的应用程序中有一个标签,其中会带有徽章编号,该标签基于3个不同时间发生的3种不同操作。我知道如何使用以下方式设置标签栏标志: [[[[[self tabBarController] tabBar]
有谁知道为什么我们的供应商需要我们的 sku 编号来开发新应用程序? 我们自己将应用程序带入应用程序商店,也许我错了,但构建应用程序或将其上传到商店不需要 sku - 它仅在 iTunes 中连接而不
这个问题已经有答案了: Rationale for Matcher throwing IllegalStateException when no 'matching' method is called
我使用[[UIApplication sharedApplication] setApplicationIconBadgeNumber:0]清除徽章编号。它工作正常,但同时删除了远程通知。 还有许多其
我有一个待办事项列表应用程序,我想在图标徽章中显示未完成任务的数量。 我的问题是:我是否应该在用户每次在应用程序中删除/添加新任务时更新徽章编号,还是仅在应用程序即将进入后台模式时更新徽章编号? 最佳
我是一名优秀的程序员,十分优秀!