I have given the image view of certain size the image which i have smaller size than the image view when i fit the image view it is looking like the picture is at the corner but i would like to get the picture in certain pattern such as after filling the smaller image in the image view on the corner the remaining space of the image view should be filled with the same smaller pic until it fits the size of the image view.
質問する
73 次
3 に答える
2
android:scaleType="fitXY" および android:adjustViewBounds="true" を使用します。これはあなたの場合に機能します。
于 2013-09-25T06:33:40.213 に答える
0
ImageView コンポーネントがあるレイアウト ファイルに、この属性を追加できます。
android:scaleType="fitXY"
于 2013-09-25T06:39:59.433 に答える
0
これを試して、xmlファイルにscaleType属性を追加してください
android:scaleType="fitXY"
于 2013-09-25T06:36:45.353 に答える