Android 設定TextView滑動滾動條和滑動效果
1、單獨的TextView控制元件設定滾動條
<TextView
android:id="@+id/content"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="file content is empty!"
android:scrollbars="vertical"
android:fadeScrollbars="false"/>
在activity中為這個TextView設定:
mFileContentView = (TextView) findViewById(R.id.content);
mFileContentView.setMovementMethod(ScrollingMovementMethod.getInstance());
經過上面兩個步驟,TextView就可以上下滾動了,如果想自定義滾動條,接著在xml裡面加入屬性:
android:scrollbarThumbVertical="@drawable/ic_launcher" //滑塊的圖片
android:scrollbarTrackVertical="@drawable/ic_launcher" //滑道的圖片
ScrollBar由兩部分組成,一個是Track(滑道),一個是Thumb(滑塊)
2、也可以用ScrollView
<ScrollView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:scrollbars="vertical"
android:fadingEdge="vertical">
<TextView
android:id="@+id/content"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="file content is empty!"/>
</ScrollView>
相關文章
- jQuery滑動方式上下左右滾動效果jQuery
- 滑鼠滑輪上下滾動設定方法_怎樣設定滑鼠上下滾動
- vscode 如何設定滑輪滾動快捷鍵VSCode
- jQuery 效果 – 滑動jQuery
- 滑動條:QSliderIDE
- 聊天平臺原始碼,簡單使用 禁止滑動和設定滑動方向原始碼
- 隱藏滾動條保留滾動效果
- tbody 滾動條設定
- 一個有上下滾動效果的TextViewTextView
- vue路由切換滑動效果Vue路由
- Android 禁止ViewPager左右滑動AndroidViewpager
- Android | 玩轉AppBarLayout,設定scrollFlags滑動屬性詳解AndroidAPP
- 仿 “即刻APP” 滑動返回的效果APP
- Android:巢狀滑動總結Android巢狀
- 視訊直播原始碼,新增內容滑動條,停止滑動時隱藏原始碼
- 短視訊帶貨原始碼,更改滾動條跟隨手機滑動的速度原始碼
- 直播平臺開發,自定義中間向兩邊滑動的滑動條
- 短視訊直播原始碼,滾動定位,規定每次滑動時下滑多少格原始碼
- CSS文字交錯滑動效果-001CSS
- 使用ViewPager和TabLayout來實現滑動切換效果ViewpagerTabLayout
- css滾動條設定(選擇器)CSS
- table上下對齊滾動條設定
- Android自定義滑動刻度尺Android
- Android 自定義View 滑動解鎖AndroidView
- 直播系統app原始碼,自定義中間向兩邊滑動的滑動條APP原始碼
- 帶貨直播原始碼,確定ViewPager滑塊滑動方向原始碼Viewpager
- CSS 美化滑動輸入條 input rangeCSS
- RecyclerView滾動位置,滾動速度設定View
- 【譯】定製Flutter滾動效果Flutter
- 移動端左滑右滑元件元件
- CSS3滑動開關按鈕效果CSSS3
- (十)如果實現滑動展示選單效果
- 實現抖音 “影片無限滑動“效果
- uniapp---app滑動翻頁(上滑、下滑、左滑、右滑)APP
- Android巢狀滑動邏輯淺析Android巢狀
- web 移動端 橫向滾動的阻尼感很強,滑動不靈敏Web
- 美化滾動條效果程式碼例項
- CSS3滾動條效果程式碼CSSS3