国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統 > Android > 正文

Android RatingBar星星評分控件實例代碼

2019-10-22 18:35:23
字體:
來源:轉載
供稿:網友

效果圖:

android,ratingbar,評分控件

直接上代碼:

xml文件:

<?xml version="1.0" encoding="utf-8"?> <LinearLayout   xmlns:android="http://schemas.android.com/apk/res/android"   xmlns:app="http://schemas.android.com/apk/res-auto"   xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"   android:layout_height="match_parent" tools:context="com.example.blogtest.MainActivity">   <!--numStars設置星星的數量,stepSize默認的評分-->   <RatingBar     android:layout_width="wrap_content"     android:layout_height="wrap_content"     android:id="@+id/rb_main_rating"     android:numStars="5"     android:stepSize="0.5"     /> </LinearLayout> 

Java代碼:

package com.example.blogtest; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.Gravity; import android.widget.RatingBar; import android.widget.Toast; public class MainActivity extends AppCompatActivity {   private RatingBar rb_main_rating;   @Override   protected void onCreate(Bundle savedInstanceState) {     super.onCreate(savedInstanceState);     setContentView(R.layout.activity_main);     //獲得RatingBar的控件     rb_main_rating = (RatingBar) findViewById(R.id.rb_main_rating);     //給控件設置監聽事件     rb_main_rating.setOnRatingBarChangeListener(new RatingBar.OnRatingBarChangeListener() {       @Override       public void onRatingChanged(RatingBar ratingBar, float rating, boolean fromUser) {         Toast t=Toast.makeText(MainActivity.this,"您的評分為:"+rating,Toast.LENGTH_SHORT);         t.setGravity(Gravity.CENTER,0,0);         t.show();       }     });   } } 

以上所述是小編給大家介紹的Android RatingBar 評分控件,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對VEVB武林網網站的支持!


注:相關教程知識閱讀請移步到Android開發頻道。
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 苏尼特右旗| 瑞金市| 阿克苏市| 阿尔山市| 大英县| 虎林市| 霸州市| 府谷县| 山东省| 肇州县| 黄石市| 同心县| 深州市| 天祝| 板桥市| 教育| 綦江县| 灵台县| 蒙城县| 诸城市| 舟山市| 房产| 安阳县| 武乡县| 汉阴县| 江都市| 揭东县| 特克斯县| 平定县| 南昌县| 长寿区| 抚州市| 丰城市| 台南县| 马公市| 江西省| 湖口县| 铜陵市| 嘉善县| 津市市| 凯里市|