fit()がなければ正常です。 Picasa.with(getApplicationContext())。load(url.concat(featureImage))。into(imageView);フィッティング()を使用しているときにピカソが画像を読み込んでいません
ImageView imageView = (ImageView)findViewById(R.id.featureImage);
TextView textTitle = (TextView)findViewById(R.id.title);
TextView textDetail = (TextView)findViewById(R.id.detail);
Picasso.with(getApplicationContext()).load(url.concat(featureImage)).fit().into(imageView);
textTitle.setText(title);
textDetail.setText(detail);
エラーまたはログレポートを表示します。詳細については –
あなたのfit()コールはどこですか? –
私の質問を編集しました。一度チェックしてください。 – Mahen