ProgressBar 顏色的設定
轉載自:http://blog.csdn.net/mars2639/article/details/6620836
佈局檔案程式碼:
- <ProgressBar
- android:id="@+id/progressbar"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:indeterminateDrawable="@drawable/progressbar"
- />
此XML檔案新建在drawable目錄下:檔名為:progressbar
- <?xml version="1.0" encoding="utf-8"?>
- <animated-rotate
- xmlns:android="http://schemas.android.com/apk/res/android"
- android:pivotX="50%" android:pivotY="50%"
- android:fromDegrees="0"
- android:toDegrees="360">
- <shape
- android:shape="ring"
- android:innerRadiusRatio="3"
- android:thicknessRatio="8"
- android:useLevel="false">
- <gradient
- android:type="sweep"
- android:useLevel="false"
- android:startColor="#6BD3FF"
- android:centerColor="#FF7121"
- android:centerY="0.50"
- android:endColor="#FFFF00" />
- </shape>
- </animated-rotate>
至於設定水平進度條的顏色:
- <LinearLayout android:gravity="center"
- android:orientation="horizontal"
- android:padding="10dp"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content">
- <SeekBar android:layout_gravity="center" android:id="@android:id/progress"
- android:paddingLeft="8.0dip" android:paddingRight="8.0dip"
- android:paddingBottom="4.0dip" android:layout_width="fill_parent"
- android:layout_height="wrap_content" android:maxHeight="2.0px"
- android:progressDrawable="@drawable/progressbar_drawable" android:minHeight="2.0px"
- android:thumb="@drawable/seekbar_thumb" style="?android:attr/progressBarStyleHorizontal" />
- </LinearLayout>
progressbar_drawable.xml如下:
- <?xml version="1.0" encoding="utf-8"?>
- <layer-list xmlns:android="http://schemas.android.com/apk/res/android">
- <item android:id="@android:id/background">
- <shape>
- <corners android:radius="2.0dip" />
- <gradient android:startColor="#ff000000" android:centerColor="#ff000000" android:endColor="#ff000000" android:angle="270.0" android:centerY="2.0" />
- </shape>
- </item>
- <item android:id="@android:id/progress">
- <clip>
- <shape>
- <corners android:radius="2.0dip" />
- <gradient android:startColor="#ff33b5e5" android:centerColor="#ff33b5e5" android:endColor="#ff33b5e5" android:angle="270.0" android:centerY="2.0" />
- </shape>
- </clip>
- </item>
- </layer-list>
相關文章
- 設定toast的字型顏色和背景顏色AST
- 直播平臺搭建原始碼,Android進度條ProgressBar顏色的漸變設定原始碼Android
- Android 圓形ProgressBar 改變顏色Android
- 我的SCRT顏色設定
- JavaScript WebGL 設定顏色JavaScriptWeb
- AUTOCAD——設定顏色
- css 設定背景顏色CSS
- 設定Toast字型顏色AST
- system命令設定顏色
- CSS設定元素的背景顏色CSS
- 設定placeholder的字型顏色
- CAD如何設定顏色
- 【emWin】例程六:設定顏色
- Linux vi 顏色設定Linux
- UITabBarController、TabBar背景顏色設定、TabBarItem顏色處理UItabBarController
- markdown字型顏色和背景設定
- CSS 設定字型顏色和大小CSS
- qt 設定選單欄顏色QT
- jQuery設定div邊框顏色jQuery
- RGB顏色設定錯誤
- svg 圖示設定背景顏色SVG
- CSS設定選中文字的顏色CSS
- 設定隨機顏色的兩個方法隨機
- IOS設定狀態列的背景顏色iOS
- 設定Tabbar和NavigationBar的顏色tabBarNavigation
- GBA顏色特效的設定方法(轉)特效
- 如何決定介面設計中顏色
- CSS 設定文字框游標顏色CSS
- word字型顏色怎麼快速設定?
- iOS button背景顏色狀態設定iOS
- 設定placeholder字型顏色程式碼
- ALV單元格顏色設定
- 設定CCLabelTTF,選單字型顏色
- js設定輸入的文字不同顏色效果JS
- CSS設定滑鼠選中文字的顏色CSS
- Mac的QQ如何設定字型大小和顏色Mac
- 設定文字的選中狀態背景顏色
- dataGridView 設定某一行的顏色View