How to create Rating Bar In Android Studio ?

How to Create Rating Bar In Android Studio ?

To create Rating Bar in Android Studio follow the given steps:-

OUTPUT














First Click on File  > GO TO Project Structure > GO TO dependencies  > GO TO app and then search  design dependency and Click on Apply or Ok.


Dependencies 

dependencies {
   
    implementation 'com.android.support:design:28.0.0'
}

AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.ratingbar">

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity android:name=".MainActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>


MainActivity.java

public class MainActivity extends AppCompatActivity {

    private RatingBar ratingBar;
    private Button button;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        ratingBar = findViewById(R.id.rating);
        button = findViewById(R.id.buttn);
    }

    public void ClickMe(View view) {

        float ratingValue = ratingBar.getRating();
        Toast.makeText(this, "Give Us Rating " + ratingValue, Toast.LENGTH_SHORT).show();
    }
}


activity_main.xml

   <?xml version="1.0" encoding="utf-8"?>
   <RelativeLayout 
       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"   
        android:orientation="vertical"   
        tools:context=".MainActivity">

   <RatingBar        
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"        
        android:id="@+id/rating"        
        android:numStars="5"        
        android:stepSize="0.5"        
        android:layout_centerHorizontal="true"        />

    <Button       
        android:layout_width="wrap_content"        
        android:layout_height="wrap_content"        
        android:id="@+id/buttn"        
        android:layout_below="@id/rating"         
        android:layout_centerHorizontal="true"      
        android:text="Rate US"     
        android:textAllCaps="false"       
        android:onClick="ClickMe"        />

</RelativeLayout>

0 Comments