2016-11-09 17 views
3

enter image description hereScrollView Scrollbartrackの可視性

enter image description here

私はscrollbarthumbの下に示す影(scrollbartrack)を削除したいです。 しかしそれはできません。私は設定しようとしましたandroid:scrollbarTrackVertical="@null"

黒い部分は無視してください。

+0

からのビットは、Uは、Androidを試みたなぜdrawble画像を(左右に)透明領域を含むが、thatsのなし" ?あなたのスクロールバーのタグ –

+0

私はスクロールバーが欲しいですが、影として現れるトラックはありません – Bipin

+0

答えを編集 –

答えて

-1

XMLまたはコードを使用して行うことができます。 XMLで

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:id="@+id/yourScroll" 
    android:scrollbars="none" <!-- add this --> 
    > 

またはあなたのコード内:

yourScrollView.setVerticalScrollBarEnabled(false); 
yourScrollView.setHorizontalScrollBarEnabled(false); 

編集

あなたは、そのタスクの追加のために、あなたの新しいイメージで質問を変更しましたあなたの必要条件として引き出し可能な画像をandroid:scrollbarThumbVertical

<ScrollView 
     android:scrollbarThumbVertical="@drawable/line" <--like this--> 
     android:id="@+id/my_scroll" 
     android:layout_width="match_parent" 
     android:layout_height="500dp"> 

     <LinearLayout 
      android:layout_width="match_parent" 
      android:layout_height="match_parent" 
      android:orientation="vertical"> 
      <LinearLayout 
       android:layout_width="match_parent" 
       android:layout_height="300dp"> 
      </LinearLayout> 
      <LinearLayout 

       android:layout_width="match_parent" 
       android:layout_height="400dp"> 
      </LinearLayout> 

     </LinearLayout> 
    </ScrollView> 

:スクロールバー「=右端

enter image description here

+0

あなたは写真を投稿できますか? – Bipin