应用程序在使用文本和图像制作自定义列表视图时崩溃

时间:2015-10-21 07:48:17

标签: android listview android-listview

每次尝试运行以下代码时,应用都会崩溃。 这是logcat

function getUserInfo() {
    $.ajax({
        url: 'https://www.googleapis.com/oauth2/v1/userinfo?access_token=' + acToken/acToken,
        data: null,
        success: function (resp) {
            user = resp;
            console.log(user);
            $('#uName').text('Welcome ' + user.name);
            $('#imgHolder').attr('src', user.picture);
        },
        dataType: "jsonp"
    });
}
 .editable {
    width: 100%;
    background-color: transparent;
    height: 800px;
    overflow: hidden;
    border: none;
    outline: none;
}

1 个答案:

答案 0 :(得分:2)

你知道什么是NullPointerException吗?

您正尝试在尚未创建的list对象上调用方法。 list在此处为空:

list = (ListView) list.findViewById(R.id.listView);

此外,您不需要在同一列表中搜索列表。它应该只是:

list = (ListView) findViewById(R.id.listView);