Проблема с прокруткой? - PullRequest
0 голосов
/ 07 сентября 2011

Я организовал просмотр изображений в режиме прокрутки, если изображение больше, чем дисплей, оно показывает размытые края (не острые).

 <ScrollView 
    android:layout_marginTop="35dip"
    android:id="@+id/sv"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"> 

   <HorizontalScrollView 
       android:id="@+id/hsv"
       android:layout_width="wrap_content"
       android:layout_height="wrap_content">   

       <FrameLayout 
          android:id="@+id/framelayout"
          android:layout_marginTop="30dip"
          android:layout_height="fill_parent" 
          android:layout_width="fill_parent">

          <ImageView 
               android:id="@+id/ImageView01"
               android:layout_alignParentTop="true"
               android:layout_height="wrap_content" 
               android:layout_width="wrap_content"/>

см. Изображение по краям справа и внизу: http://dl.dropbox.com/u/38493970/device-2011-09-07-144456.png

1 Ответ

1 голос
/ 07 сентября 2011

Посмотрите на android:fadingEdge установите его на none.

...