0
私はアンドロイドを初めて使っています。私はアプリで画像を読み込むことができません。メインのコードは、XMLがイメージはAndroidに読み込まれません
`<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.deepakchethan.imagedisplay.MainActivity">
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/ImageContainer"
tools:src="@mipmap/ic_launcher"/>
</RelativeLayout>`
である。しかし、まだ画像が読み込まれていない
package com.example.deepakchethan.imagedisplay;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.widget.ImageView;
import com.squareup.picasso.Picasso;
public class MainActivity extends AppCompatActivity {
ImageView imageView;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
imageView=(ImageView)findViewById(R.id.ImageContainer);
Picasso.with(getApplicationContext()).load("https://image.tmdb.org/t/p/w342/z4x0Bp48ar3Mda8KiPD1vwSY3D8.jpg").into(imageView);
}
}`
です。今何をする。伝えてください。私は勉強する必要があります。
どのようなエラーが表示されますか? – Akshay
イメージがロードされていません –