我已经尝试解决这个问题几个小时了,并且已经用尽了所有明显的解决方案。我有一个自定义切换按钮,只要我不尝试使用 findViewById 就可以正常工作
以下是相关代码:
public class WeekButton extends ToggleButton {
private static int mWidth;
public WeekButton(Context context, AttributeSet attrs) {
super(context, attrs);
}
public WeekButton(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
}
...
}
这是布局..
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="8dp"
android:gravity="center"
android:orientation="horizontal"
android:padding="5dp">
<org.myname.projetname.reminders.WeekButton.WeekButton
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/mondayToggleButton"
style="@style/RecurrenceDayOfWeekStyle"
android:textOff=" Mon"
android:textOn=" Mon" />
</LinearLayout>
这里发生异常..
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.edit_reminder_activity);
//This causes null pointer
WeekButton weekButton = (WeekButton)findViewById(R.id.mondayToggleButton));
}
感谢您的任何帮助,您可以提供!
解决方案:原来我忘了实例化我正在添加 WeekButtons 的列表,这使得查找 id 的调用看起来有效,但它确实有效。谢谢你试图帮助的每一个人。