欢迎来到代码驿站!

Android代码

当前位置:首页 > 移动开发 > Android代码

Android星级评分条实现评分界面

时间:2022-12-28 09:40:17|栏目:Android代码|点击:

本文实例为大家分享了Android实现简单评分界面制作的具体代码,供大家参考,具体内容如下

简单评分界面的制作

实现如图界面

1.先布局,创建布局文件,使用相对布局,添加一个编辑框,一个文本框,一个评分条,再加一个按钮。

<?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="请评价店铺的服务态度与服务质量"
        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="店铺评分"

        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"//使用numStars=""来设置
        android:stepSize="1"//设置每次一颗一颗增加
        android:rating="5"//设置默认五颗星都是亮的
        />
    <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="发表评价"/>

</RelativeLayout>

接下来在java代码当中实现对按钮监听

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();//获取当前的星数
                Toast.makeText(RatingBar_Activity.this,"你评价了"+rating+"颗星",Toast.LENGTH_LONG).show();
            }
        });

    }
}

上一篇:Android 中Popwindow弹出菜单的两种方法实例

栏    目:Android代码

下一篇:RecyclerView焦点跳转BUG优化的方法

本文标题:Android星级评分条实现评分界面

本文地址:http://www.codeinn.net/misctech/222422.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有