为了好玩,我正在研究Udacity Popular Movies应用程序。我正在点击GridView中的电影图像,然后转到详细视图,我希望在顶部显示背景图片,下面标题,以及下面的概述。全部在LinearLayout中,所有内容都位于顶部。
以下是在ImageView中设置图像的代码:
Plug-ins -> Cursive -> Sync files in REPL
这是详细布局文件:
ImageView imageView = (ImageView) findViewById(R.id.imageView);
Picasso.with(this).load("http://image.tmdb.org/t/p/w500/" + movie.backDrop).into(imageView);
我不确定为什么图像居中且小我想要它填充屏幕的宽度。任何帮助将不胜感激。
答案 0 :(得分:0)
在xml Imageview属性中尝试此操作
android:scaleType="fitXY"