В моем приложении я использую ScrollView для отображения изображения.Иногда, когда изображение больше, чем изображение, я хочу отобразить самый центр изображения и затем прокрутить изображение до его краев.ScrollView содержит один контейнер ImageView.Как это можно сделать?Спасибо, Эяль.
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<RelativeLayout android:id="@+id/relativeLayout1"
android:layout_height="match_parent"
android:layout_width="match_parent">
<ScrollView android:id="@+id/scrollView1"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_weight="1.0">
<ImageView android:id="@+id/imgImageView"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_width="wrap_content"
android:layout_gravity="center"/>
</ScrollView>
<TextView android:layout_height="wrap_content"
android:id="@+id/addrTextView"
android:layout_alignParentBottom="true"
android:layout_width="match_parent"
android:gravity="center"
android:textSize="12px"
android:layout_weight="0.0"/>
</RelativeLayout>
</LinearLayout>