基本的に、中心のない scaleType="centerCrop" のようなものを探しています。
ImageView
画面サイズよりも大きいと正しく表示できず困っています。ImageView
で始まりtop=0
、left=0
スケーリングされていないを表示しようとしています。画像が画面に収まらなくても大丈夫です。今、私は相対的なレイアウトでそれを持っています:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/postagram_blank_large"/>
</RelativeLayout>
高さと幅に awrap_content
を使用してみました。を使用するだけでなく、RelativeLayout
で遊んだこともあります。の問題は、画像がディスプレイ ポートよりも高さと幅の両方であるということです (これも意図的に発生することです)。scaleType
Scrollview
ScrollView
どうすればこれを機能させることができますか?