我的android项目中有一种非常奇怪的行为。
首先,我创建了一个名为ANumberPicker的自定义视图(在操作系统版本<3.0的Android设备上使用它)。这是类的代码片段:
public class ANumberPicker extends LinearLayout {
// ...
@NotNull
private final NumberPickerButton incrementButton;
@NotNull
private final NumberPickerButton decrementButton;
public ANumberPicker(Context context, @Nullable AttributeSet attrs) {
super(context, attrs);
setOrientation(VERTICAL);
// INFLATING LAYOUT
final LayoutInflater inflater = (LayoutInflater) getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
inflater.inflate(R.layout.number_picker, this, true);
final InputFilter inputFilter = new NumberPickerInputFilter();
numberInputFilter = new NumberRangeKeyListener();
incrementButton = (NumberPickerButton) this.findViewById(R.id.increment);
incrementButton.setNumberPicker(this);
decrementButton = (NumberPickerButton) this.findViewById(R.id.decrement);
decrementButton.setNumberPicker(this);
// ...
}
// ...
}
这是number_picker.xml布局:
<merge xmlns:a="http://schemas.android.com/apk/res/android">
<org.solovyev.android.view.NumberPickerButton
a:id="@+id/increment"
a:layout_width="fill_parent"
a:layout_height="wrap_content"
a:background="@drawable/timepicker_up_btn"/>
<EditText a:id="@+id/timepicker_input"
a:layout_width="fill_parent"
a:layout_height="wrap_content"
a:gravity="center"
a:singleLine="true"
style="?android:attr/textAppearanceLargeInverse"
a:textColor="@android:color/primary_text_light"
a:textSize="30sp"
a:inputType="numberDecimal"
a:background="@drawable/timepicker_input"/>
<org.solovyev.android.view.NumberPickerButton
a:id="@+id/decrement"
a:layout_width="fill_parent"
a:layout_height="wrap_content"
a:background="@drawable/timepicker_down_btn"/>
在ANumberPicker构造函数中,我膨胀'number_picker.xml'布局并尝试通过id获取视图:inflater与attachToRoot ='true'参数一起使用。但是我在运行时遇到了NullPointerException:
incrementButton.setNumberPicker(this);
即。 incrementButton = null。
此外,在Jetbrains IDEA中调试此代码我在“Watches”窗口中获得了下一个值(断点在NPE的源代码行上设置):
(NumberPickerButton) this.findViewById(R.id.increment) = {org.solovyev.android.view.NumberPickerButton@830082344688}
R.id.increment = 2131296256
this.getChildAt(0).getId() = 2131296256
incrementButton = null
即。完全相同的代码在调试器中返回非null。 我无法弄明白......有什么建议吗?哪里可能是问题?
PS我清理了项目并重建了它(我使用maven)
EDIT 我找到了线索:R.id.increment和view有不同的整数标识符(我只是在Logcat中记录了它们的ID)。但问题仍然存在 - 清理项目并没有帮助......
答案 0 :(得分:1)
已解决:Jetbrains IDEA存储在缓存中以前构建的R文件,因此“Invalidate caches”修复了问题。