1

基本的に私がやりたいことは、画像のURLを使用して(ダウンロードされているかどうかは関係ありません)、relativelayoutの背景を設定することです

私は何時間もグーグルで検索し、多くの提案を試みましたが、常にエラーやアプリのクラッシュが発生します...

if((!modelsArrayList.get(position).isGroupHeader())&&       (modelsArrayList.get(position).isProfBox())) {
            rowView = inflater.inflate(R.layout.prof_header, parent, false);
            TextView titleView = (TextView)     rowView.findViewById(R.id.header);
            titleView.setText(modelsArrayList.get(position).getTitle());
            RelativeLayout rLayout=(RelativeLayout)rowView.findViewById(R.id.ProfHead);
           rLayout.setBackgroundResource("HTTP://URL.HERE");

私はこのような他の人を試しました(http://looksok.wordpress.com/2013/07/06/android-tutorial-download-image-from-the-internet-with-url/)が、うまくいきませんでした

4

2 に答える 2