使用滚动条在imageview中显示完整图像

时间:2013-09-20 07:00:21

标签: android android-layout

我有一个Android应用程序,我在其中使用ImageView来显示图像。我还在imageview中设置了scrollview。在imageview中还有缩放功能。放大图像时,滚动视图不允许在放大后显示完整图像。它仅显示滚动条内部的图像部分。我希望在放大后使用滚动条显示完整的iamge。这是我的XML文件的代码。

    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@drawable/org_back"
    android:orientation="vertical" >


    <RelativeLayout
    android:id="@+id/rlayout1"
    android:layout_width="match_parent"
    android:layout_height="400dp"
    android:layout_marginBottom="10dp"
    android:layout_marginLeft="10dp"
    android:layout_marginRight="10dp"
    android:layout_marginTop="10dp"
    android:background="@drawable/layout_shape" >

        <ScrollView 
         android:layout_width="fill_parent"
         android:layout_height="wrap_content"
         android:layout_marginTop="10dip"
         android:scrollbarStyle="outsideOverlay"
         android:fadeScrollbars="true"
         android:scrollbarSize="10dip">
        <HorizontalScrollView
        android:layout_width="match_parent"          
        android:layout_height="wrap_content" >
             <ImageView
             android:id="@+id/imageView"
             android:layout_width="wrap_content"
             android:layout_height="match_parent"
             android:scaleType="matrix"
             android:adjustViewBounds="true"
             android:layout_gravity="center_horizontal"
             android:addStatesFromChildren="true">
            </ImageView> 

       </HorizontalScrollView>
       </ScrollView> 

       </RelativeLayout>


        <Button
        android:id="@+id/btnprev"
        android:layout_alignBaseline="@+id/btnbackHome"
        android:layout_width="80dp"
        android:layout_height="40dp"
        android:layout_alignParentLeft="true"
        android:layout_marginLeft="20dp"
        android:background="@drawable/button"
        android:text="Previous" />

        <Button
        android:id="@+id/btnbackHome"
        android:layout_width="80dp"
        android:layout_height="40dp"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true"
        android:background="@drawable/button"
        android:text="Home" />

        <Button
        android:id="@+id/btnnext"
        android:layout_width="80dp"
        android:layout_height="40dp"
        android:layout_alignParentBottom="true"
        android:layout_alignRight="@+id/rlayout1"
        android:background="@drawable/button"
        android:text="Next" />

        </RelativeLayout>

0 个答案:

没有答案