亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

Android星級(jí)評(píng)分條實(shí)現(xiàn)評(píng)分界面

 更新時(shí)間:2022年05月17日 17:26:53   作者:wj778  
這篇文章主要為大家詳細(xì)介紹了Android星級(jí)評(píng)分條實(shí)現(xiàn)評(píng)分界面,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下

本文實(shí)例為大家分享了Android實(shí)現(xiàn)簡(jiǎn)單評(píng)分界面制作的具體代碼,供大家參考,具體內(nèi)容如下

簡(jiǎn)單評(píng)分界面的制作

實(shí)現(xiàn)如圖界面

1.先布局,創(chuàng)建布局文件,使用相對(duì)布局,添加一個(gè)編輯框,一個(gè)文本框,一個(gè)評(píng)分條,再加一個(gè)按鈕。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
? ? xmlns:android="http://schemas.android.com/apk/res/android"
? ? android:orientation="vertical"
? ? xmlns:tools="http://schemas.android.com/tools"
? ? android:layout_width="match_parent"
? ? android:layout_height="match_parent">
? ? <EditText
? ? ? ? android:id="@+id/etxt"
? ? ? ? android:layout_width="match_parent"
? ? ? ? android:layout_height="wrap_content"
? ? ? ? android:lines="5"
? ? ? ? android:hint="請(qǐng)?jiān)u價(jià)店鋪的服務(wù)態(tài)度與服務(wù)質(zhì)量"
? ? ? ? android:textSize="20sp"/>
? ? <TextView
? ? ? ? android:id="@+id/txt"
? ? ? ? android:layout_below="@id/etxt"
? ? ? ? android:layout_width="match_parent"
? ? ? ? android:layout_height="wrap_content"
? ? ? ? android:gravity="center"
? ? ? ? android:text="店鋪評(píng)分"

? ? ? ? android:layout_marginTop="20dp"
? ? ? ? android:textSize="20sp"/>
? ? <RatingBar
? ? ? ? android:id="@+id/ratingbar"
? ? ? ? android:layout_width="wrap_content"
? ? ? ? android:layout_height="wrap_content"
? ? ? ? android:layout_below="@id/txt"http://使用numStars=""來(lái)設(shè)置
? ? ? ? android:stepSize="1"http://設(shè)置每次一顆一顆增加
? ? ? ? android:rating="5"http://設(shè)置默認(rèn)五顆星都是亮的
? ? ? ? />
? ? <Button
? ? ? ? android:id="@+id/btn"
? ? ? ? android:layout_below="@id/ratingbar"
? ? ? ? android:layout_width="wrap_content"
? ? ? ? android:layout_height="wrap_content"
? ? ? ? android:layout_alignRight="@id/txt"
? ? ? ? android:text="發(fā)表評(píng)價(jià)"/>

</RelativeLayout>

接下來(lái)在java代碼當(dāng)中實(shí)現(xiàn)對(duì)按鈕監(jiān)聽(tīng)

package com.example.relativelayout;

import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.RatingBar;
import android.widget.Toast;

import androidx.appcompat.app.AppCompatActivity;

public class RatingBar_Activity ?extends AppCompatActivity {
? ? private RatingBar ratingBar;
? ? @Override
? ? protected void onCreate(Bundle savedInstanceState) {
? ? ? ? super.onCreate(savedInstanceState);
? ? ? ? setContentView(R.layout.ratingbar_main);
? ? ? ? ratingBar=findViewById(R.id.ratingbar);
? ? ? ? Button btn=findViewById(R.id.btn);
? ? ? ? btn.setOnClickListener(new View.OnClickListener() {
? ? ? ? ? ? @Override
? ? ? ? ? ? public void onClick(View v) {
? ? ? ? ? ? ? ? float rating=ratingBar.getRating();//獲取當(dāng)前的星數(shù)
? ? ? ? ? ? ? ? Toast.makeText(RatingBar_Activity.this,"你評(píng)價(jià)了"+rating+"顆星",Toast.LENGTH_LONG).show();
? ? ? ? ? ? }
? ? ? ? });

? ? }
}

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

最新評(píng)論