Tuesday 9 June 2015

Android Score Board


Android Score Board

This tutorial aims to provide a score board implementation. You can have a look at the example from above image.

Compatibility :  Android 3.0+

For a working implementation, Have a look at the Live Demo and download the Sample Project - attached :) 

Create a project with minSdkVersion 11 (Android 3.0)

 1. Here we need to create a package for dropping out Score board libraries. And we need to declare necessary styleable in res folder. 

2. Create a xml file named attrs.xml in res ⇒ values.

                                             attrs.xml
<!-- ... -->
   
   <resources>
     <declare-styleable name = "ScoreBoard">
        <attr name = "contentText" format = "string" />
        <attr name = "backcolor" format = "color" />
        <attr name = "forecolor" format = "color" />
        <attr name = "lineWidth" format = "dimension" />

      </declare-styleable
   </resources>

 <!-- ... -->

3. Create a package named com.scoreboard.lib and create 2 classes NumberListView.java and ScoreBoard.java. You could find the classes from the sample project i have attached.

4. After creating the libraries you can move to design the layout. Create your main layout, as follow :

activity_main.xml
<!-- ... -->
   
    <com.scoreboard.lib.ScoreBoard 
        android:id = "@+id/startView1"
        android:layout_width = "100dp"
        android:layout_height = "100dp"
        app:backcolor = "@android:color/transparent"/>
    
    <com.scoreboard.lib.ScoreBoard 
        android:id = "@+id/startView2"
        android:layout_width = "100dp"
        android:layout_height = "100dp"

        android:layout_alignParentRight = "true"
        android:layout_alignParentTop = "true"/>
  
    <com.scoreboard.lib.ScoreBoard 
        android:id = "@+id/startView"
        android:layout_width = "200dp"
        android:layout_height = "200dp"

        android:layout_centerInParent = "true"
        android:layout_marginBottom = "30dp"
        app:backcolor = "#33000000"
        app:contentText = "Score"
        app:forecolor = "#FFFFFF"
        app:lineWidth= "3dp"/>

 <!-- ... -->
 
5. Open up the MainActivity.java and declare the ScoreBoards and initialize.

// For starting up the circle line progress around the Scoreboard
startView.start(new Random().nextFloat());

// For changing the value of Scoreboard
startView.change(new Random().nextInt(100));


Live Demo : 


Source code : Click here to download.

Source link : http://android-arsenal.com/details/1/1866

As always, Thanks a lot for reading...
Don't forget to share this post if you found it interesting!
If you find something to add to this post? or any other quick thoughts/hints that you think people will find useful? Share it in the comments & feedback's are most welcome.

3 comments:

  1. This comment has been removed by the author.

    ReplyDelete
  2. One of the knowledge stuffed blogs i've ever seen. It helps revamp existing technology and architecture, using constantly evolving strategies to drive improved market performance. reffer the given blog for more info Application Modernization Services or
    reach +18882075969 for more information

    ReplyDelete