0

我已经尝试解决这个问题几个小时了,并且已经用尽了所有明显的解决方案。我有一个自定义切换按钮,只要我不尝试使用 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 的调用看起来有效,但它确实有效。谢谢你试图帮助的每一个人。

4

2 回答 2

0

忘记实例化我正在添加周按钮的列表。

于 2013-09-20T00:29:02.917 回答
0

它在运行之前没有显示任何错误吗?xml 命名空间属性是为父标签提供的。

<LinearLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
    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
    android:id="@+id/mondayToggleButton"
    style="@style/RecurrenceDayOfWeekStyle"
    android:textOff="  Mon"
    android:textOn="  Mon" />
</LinearLayout>

另外,在findViewById().

于 2013-09-19T12:28:04.343 回答