2

Linearlayout我一直在尝试将我的 facebook 个人资料图片设置为我的应用程序中的背景,但无济于事。这是我尝试执行此操作的两种方法:

第一种方式:从头像中获取uri并将其转换为drawable

protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_profile);
    LinearLayout banner = (LinearLayout)findViewById(R.id.banner);
       Profile profile = Profile.getCurrentProfile();
        if(profile != null){
           // profile_pic_id.setProfileId((profile.getId()));
            Drawable d;
            Uri uri = profile.getLinkUri();
            //also tried profile.getProfilePictureUri(random_num,random_num)
            try {

                InputStream inputStream = getContentResolver().openInputStream(uri);
                 d = Drawable.createFromStream(inputStream, uri.toString());
            } catch (FileNotFoundException e) {
                d = getResources().getDrawable(R.drawable.blue_material);
            }
            banner.setBackgroundDrawable(d);
        }
}

现在这总是抛出一个异常,所以Drawable我得到的是 blue_material 一个(Drawablecatch 块中的集合),所以如果有人知道它为什么一直抛出异常,我将不胜感激。

第二种方式:转换ProfilePictureViewImageView然后用getDrawable()ImageView.

 ProfilePictureView profilePictureFB=(ProfilePictureView)findViewById(R.id.pic);
 profilePictureFB.setProfileId((profile.getId()));
 ImageView fbImage = ( ( ImageView)profilePictureFB.getChildAt( 0));
 banner.setBackgroundDrawable(fbImage.getDrawable());

现在,当某人没有个人资料图片时,这会导致背景带有 Facebook 放置的默认图片。

并且每当我使用 decodeStream 时都会引发异常。(下面的示例)

URL img_url =new URL("https://graph.facebook.com/"+profile.getId()+"/picture?type=normal");
                Bitmap bmp =BitmapFactory.decodeStream(img_url.openConnection().getInputStream());//bmp a bitmap

我不想求助于在stackoverflow上问这个问题,因为我想自己解决它,但是我尝试了很长时间,所以我不得不寻求帮助。

感谢任何回答的人:)

4

2 回答 2

3

我解决了!!

我使用了 imageLoader,由于某种原因,url 可以使用它,这里是代码:

        imageView = (ImageView) findViewById(R.id.pic);
        imageView.setScaleType(ImageView.ScaleType.FIT_XY);
        imageLoader = ImageLoader.getInstance();

        Profile profile = Profile.getCurrentProfile();
        if(profile != null){           
            DisplayImageOptions options = new DisplayImageOptions.Builder().cacheInMemory(true).cacheOnDisk(true).build();
            imageLoader.displayImage("http://graph.facebook.com/" + profile.getId() + "/picture?width=400&height=400", imageView, options);
           // banner.setBackgroundDrawable(imageView.getDrawable());
            imageView.setScaleType(ImageView.ScaleType.FIT_XY);

该方法将setScaleType我的图像视图扩展到我的所有LinearLayout. 有关通用图像加载器的更多信息,请访问此链接: https ://github.com/nostra13/Android-Universal-Image-Loader

于 2015-05-15T16:23:36.587 回答
1

我不确定,但这是我过去常做的

 img_url =new URL("https://graph.facebook.com/"+uname+"/picture?type=normal");
     bmp =BitmapFactory.decodeStream(img_url.openConnection().getInputStream());//bmp a bitmap
     linearlayout.setImageBitmap(bmp);//your linear layout
于 2015-05-15T14:44:20.487 回答