PercentLayoutLibraryを使用してオブジェクトを画面の下側に配置し、スクロールダウン時にしか表示されないようにしたい。次のコードを試しましたが、動作していません。画像が画面に表示されず、画面をスクロールして表示することができません。PercentRelativeLayoutライブラリを使用してオブジェクトを画面外に配置する
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/ScrollView01"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true">
<android.support.percent.PercentRelativeLayout
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_widthPercent="5%"
app:layout_heightPercent="8%"
app:layout_marginTopPercent="105%"
app:layout_marginLeftPercent="25%"
android:scaleType="fitXY"
android:id="@+id/bottom"/>
</android.support.percent.PercentRelativeLayout>
</ScrollView>
APIレベル23のエミュレータで試してみると、実際にうまく動作します。私はImageViewを見るためにスクロールする必要があります。私はImageViewの背景を赤に設定しましたので、何かを読み込む必要はありませんでした。 –
ありがとうございます、私はAPIレベル23のエミュレータにアップグレードしました。 – franklin