3

我正在做的是从 facebook 获取朋友列表并尝试使用朋友姓名和他的个人资料图片填充列表视图,但没有异常和错误出现在 logcat 列表中的大小为 56 并且数据在数组列表中但不填充 UI 不要不知道为什么请给我建议解决方案,这是我的活动 getFriendList 函数代码:

public List<Friend> getFriendList(){

        Request request = Request.newMyFriendsRequest(Session.getActiveSession(), new Request.GraphUserListCallback() {

            @Override
            public void onCompleted(List<GraphUser> users, Response response) {
                // TODO Auto-generated method stub
                for(int i=0; i<users.size();i++)
                {
                GraphUser user =    users.get(i);
                Friend objFriend = new Friend();
                objFriend.setFriendID(user.getId());
                objFriend.setFriendName(user.getName());
                //objFriend.setFriendPic(user.g)
                //objFriend.setFriendPic("http://graph.facebook.com/" + objFriend.getFriendID() + "/picture");
                friendsList.add(objFriend);
                Log.d("Friend's Id", objFriend.getFriendID());
                Log.d("Friend's Name", objFriend.getFriendName());
                //Log.d("Friend's Pic", objFriend.getFriendPic());
                Log.d("Friend's List Count", Integer.toString(friendsList.size()));
                }
            }
        });
        Request.executeBatchAsync(request);
        return friendsList;
}

这是我的 onCreate 函数:

@Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.friends_list);
        list = (ListView)findViewById(R.id.listview_friends);
        friendsList = getFriendList();
        friendAdapter = new FriendAdapter(this, R.layout.activity_friends, friendsList);
        list.setAdapter(friendAdapter);
    }

这是我的自定义适配器代码:

public class FriendAdapter extends ArrayAdapter<Friend>
    {
        Context context;
        Friends holder;
        int layoutResourceId;
        List<Friend> friendList;
        Bitmap profilePhoto;

        public FriendAdapter(Context context, int layoutResourceId,List<Friend> friendList)
        {
            super(context, layoutResourceId, friendList);           
            this.context=context;
            this.layoutResourceId=layoutResourceId;
            this.friendList=friendList;
        }


        @Override
        public View getView(int position,View convertView,ViewGroup parent)
        {
            View row=convertView;

            if(row==null)
            {
                LayoutInflater inflater=((Activity)context).getLayoutInflater();
                row=inflater.inflate(layoutResourceId, parent,false);

                holder=new Friends();
                //holder.friendProfilePic=(ImageView)row.findViewById(R.id.ImageViewfriendProfilePic);
                holder.friendName = (TextView)row.findViewById(R.id.textViewFriendsName);

                row.setTag(holder);
            }
            else
            {
                holder=(Friends)row.getTag();
            }
//      
            holder.friendName.setText(friendList.get(position).getFriendName());
            //holder.friendProfilePic.setImageBitmap(profilePhoto);

            return row;
        }

这是我的 xml 布局friends_list.xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <ListView
        android:id="@+id/listview_friends"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >
    </ListView>

</LinearLayout>

这是activity_friends.xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >

        <ImageView
        android:id="@+id/ImageViewfriendProfilePic"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="10dip"
        android:src="@drawable/com_facebook_button_grey_focused" />

    <TextView
        android:id="@+id/textViewFriendsName"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="100dip"
        android:layout_marginTop="20dip"
        android:text="TextView" />
    </RelativeLayout>



</LinearLayout>
4

2 回答 2

3

不要以这种方式使用列表。

朋友列表 = 获取朋友列表();

由于请求已发送并且您得到了结果,因此可能需要一些时间,所以像这样声明您的列表对象

List<Friends> friendList = new ArrayList<Friends>();

只需在适配器中将此数组列表作为空传递并将适配器设置为列表

friendAdapter = new FriendAdapter(this, R.layout.activity_friends, friendsList);
list.setAdapter(friendAdapter);

现在使用 AsyncTask 类在后台从 web 获取数据,因此 UI 不会停止,它将在后台获取

更新

AsyncTask FetchFriendList = new AsyncTask<Void,Void,Void>(){
    private List<Friends> list;
    public void doInBackground(Void... param){
         list = getFriendList(); // call here your request
    }

    public void onPostExecution(Void result){
           friendList.addAll(list);
           friendAdapter.notifyDatasetChanged();

    }
};

在适配器设置后在 onCreate 中调用它

FetchFriendList ffl = new FetchFriendList();
ffl.execute();

当您在列表中添加/编辑/删除项目时,还有一件事必须调用 notifyDatasetChanged(); 并且不要在 UI 中添加/删除太多,它可能会强制关闭大数据

于 2012-12-24T13:21:31.677 回答
0

只需将您的适配器更改为

if(row==null)
{
  LayoutInflater inflater=((Activity)context).getLayoutInflater();
  row=inflater.inflate(layoutResourceId, null);
  holder=new Friends();
  holder.friendName = (TextView)row.findViewById(R.id.textViewFriendsName);
  row.setTag(holder);
}

并覆盖适配器中的getCount()方法以返回friedns列表的大小..我也遇到过这个..

于 2013-11-15T16:03:59.780 回答