您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關Android如何自定義View實現投票進度條的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
具體內容如下
效果展示
功能屬性介紹
<!-- MatchSupportProgressBar --> <declare-styleable name="MatchSupportProgressBar"> <!-- 進度條圓角角度 --> <attr name="progress_radio" format="string"></attr> <!-- 進度條左側Tag文本 --> <attr name="progress_tag_text" format="string"></attr> <!-- 進度條已填充部分顏色 --> <attr name="progress_reach_color" format="color"></attr> <!-- 進度條已填充部分高度 --> <attr name="progress_reach_height" format="dimension"></attr> <!-- 進度條背景顏色 --> <attr name="progress_background_color" format="color"></attr> <!-- 進度條背景高度 --> <attr name="progress_background_height" format="dimension"></attr> <!-- 進度條左側Tag文本顏色 --> <attr name="progress_tag_text_color" format="color"></attr> <!-- 進度條左側Tag文本尺寸 --> <attr name="progress_tag_text_size" format="dimension"></attr> <!-- 進度條右側百分比文本顏色 --> <attr name="progress_percent_text_color" format="color"></attr> <!-- 進度條右側百分比文本尺寸 --> <attr name="progress_percent_text_size" format="dimension"></attr> <!-- 進度條右側百分比文本 --> <attr name="progress_percent_text" format="string"></attr> <!-- 進度條選中的圖標與進度條、文字的間距 --> <attr name="progress_offsetX" format="dimension"></attr> <!-- 進度條右側文字的水平偏移量 --> <attr name="progress_offsetR" format="dimension"></attr> <!-- 進度條之間的偏移量 --> <attr name="progress_LineSpacing" format="dimension"></attr></declare-styleable>
xml使用示例
<com.yjyc.supportprogress.view.MatchSupportProgressBar android:id="@+id/progressbar_match_support" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="10dp" android:paddingLeft="3dp" android:paddingRight="3dp" android:progress="30" yjcp:progress_background_color="#333" yjcp:progress_background_height="30dp" yjcp:progress_offsetR="20dp" yjcp:progress_percent_text_color="#345698" yjcp:progress_percent_text_size="13sp" yjcp:progress_reach_color="#999" yjcp:progress_tag_text_color="#ffffff" yjcp:progress_tag_text="杰倫;那英;汪峰" yjcp:progress_tag_text_size="13sp" />
java使用示例
//進度條的點擊事件監聽mspb.setOnRightTextClickListener(new OnRightTextClickListener() { @Override public void onClick(int position) { //position是點擊的位置 }});
/*為進度條賦值:參數1:是我們算好的進度值,一般由服務器返回。(注: yjcp:progress_tag_text="杰倫;那英;汪峰"設置 了幾個字符串,getPercentList就要傳幾個字符串)參數2:得到一個boolean類型的集合,用于設置進度條√顯示的位置參數3:true表示已投票,false表示未投票參數4:是否開啟動畫特效*/mspb.setPercentState(getPercentList("10","90","100"), getCheckList(position), true, true);
//重置進度條狀態,如果在listview中涉及到復用問題條用它即可。//參數:true投過票,false未投過mspb.setState(false);
感謝各位的閱讀!關于“Android如何自定義View實現投票進度條”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。