SpiderWebScoreView


Source link: https://github.com/panpf/SpiderWebScoreView

# SpiderWebScoreView

SpiderWebScoreView???Android??????????

###Features

  • ?? ?????? ????
  • ????????????? ????
  • ????????? ????

###Usage Guide

####1. Import SpiderWebScoreView add gradle dependency

dependencies{
  compile 'me.xiaopan:spiderwebscoreview:lastVersionName' 
}

lastVersionName? ???v?

???? Android2.2

####2. Use in layout ??????????SpiderWebScoreView?CircularLayout

<FrameLayout
  android:layout_width="match_parent"
  android:layout_height="150dp"
  android:clipChildren="false">

<me.xiaopan.swsv.SpiderWebScoreView

android:id="@+id/spiderWeb_mainActivity_1"

android:layout_width="100dp"

android:layout_height="100dp"

android:layout_gravity="center" />

<me.xiaopan.swsv.CircularLayout

android:id="@+id/layout_mainActivity_circular1"

android:layout_width="100dp"

android:layout_height="100dp"

android:layout_gravity="center"

android:clipChildren="false"/> </FrameLayout>

???

  • SpiderWebScoreView????????
  • CircularLayout?????????
  • CircularLayout? ?????SpiderWebScoreView ?????????
  • CircularLayout??View????????????? CircularLayout?? ?FrameLayout????? clipChildren?false
  • ?FrameLayout???CircularLayout ???????????????CircularLayout??View?????????????

####3. Run time settings ????????SpiderWebScoreView.setScores(float maxScore, float[] scores)????????????????

  • ???????scores.length???????????
  • ???5?

?????????CircularLayout?????????View???????????scores??

???

@Override protected void onCreate(Bundle savedInstanceState) {

  super.onCreate(savedInstanceState);

  setContentView(R.layout.activity_main);

SpiderWebScoreView spiderWebScoreView1 = (SpiderWebScoreView) findViewById(R.id.spiderWeb_mainActivity_1);

  CircularLayout circularLayout1 = (CircularLayout) findViewById(R.id.layout_mainActivity_circular1);

Score[] scores = new Score[]{

new Score(7.0f, R.drawable.vip_icon7),
new Score(8.0f, R.drawable.vip_icon8),
new Score(5.0f, R.drawable.vip_icon5),
new Score(5.0f, R.drawable.vip_icon5),
new Score(8.0f, R.drawable.vip_icon8),
new Score(7.0f, R.drawable.vip_icon7),  
}
;
  setup(spiderWebScoreView1, circularLayout1, scores);
 
}
  private void setup(SpiderWebScoreView spiderWebScoreView, CircularLayout circularLayout, Score... scores){
  float[] scoreArray = new float[scores.length];
  for(int w = 0; w < scores.length; w++){

scoreArray[w] = scores[w].score;
  
}

  spiderWebScoreView.setScores(10f, scoreArray);

circularLayout.removeAllViews();

  for(Score score : scores){

TextView scoreTextView = (TextView) LayoutInflater.from(getBaseContext()).inflate(R.layout.score, circularLayout, false);

scoreTextView.setText(score.score+"");

if(score.iconId != 0){

 scoreTextView.setCompoundDrawablesWithIntrinsicBounds(0, 0, score.iconId, 0);

}

circularLayout.addView(scoreTextView);

  
}
 
}
  public static class Score{

  public float score;
  public int iconId;

public Score(float score, int iconId) {

this.score = score;

this.iconId = iconId;
  
}

public Score(float score) {

this.score = score;
  
}
 
}

####4. Attributes

SpiderWebScoreView

Name ?? ???? ???
angleCount ??????????? ??setScores(float, float[])?????scores????????? 5
hierarchyCount ?????????? setHierarchyCount(int) 5
maxScore ???? setScores(float, float[])??????????maxScore 10f
lineColor ??????? setLineColor(int) 0xFF000000
lineWidth ??????? setLineWidth(float) -1(????Paint????)
scoreColor ??????? setScoreColor(int) 0x80F65801
scoreStrokeColor ????????? setScoreStrokeColor(int) 0xFFF65801
scoreStrokeWidth ????????? setScoreStrokeWidth(float) -1(????Paint????)
disableScoreStroke ???????? setDisableScoreStroke(boolean) false

CircularLayout

Name ?? ???? ???
spacing ???View???????? setSpacing(int) 8dp

???????sample??

License

Copyright (C) 2016 Peng fei Pan <[email protected]>  Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License. You may obtain a copy of the License at
 http://www.apache.org/licenses/LICENSE-2.0  Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 

Resources

This is light weight library for getting location updates periodically, can customize according to user requirement.

The flexible and easy to use WebView library with beautiful themes and extra options.

Android Debug Database is a powerful library for debugging databases and shared preferences in Android applications.

SwipeCardview is a recyclerview that lists products, items or etc. with using cardview. Also it aligns the card to center.

  • Android API 14+
  • Optimized for the all screen sizes
  • Easy to use
  • Image loading with Ion library

As the name describes, this is an Android library that you can use to show new messages badge and new features badge. More importantly, it has a default shadow like FAB (Floating Action Button) and more simple to use just like ordinary TextView.

SRML: "String Resource Markup Language"

Mark up your Android string resources with an impressive suite of formatting tags.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes