IndicatorView


Source link: https://github.com/Carbs0126/IndicatorView

IndicatorView


Android???IndicatorView??????page??index???

??

Android IndicatorView??????SlidingTabView?????“???”?????????????????????????????view? ??SlidingTabView?????????????????“???????????????”????

????

??????????tab??????

???

??????????

??????????????IndicatorView?SimpleIndicatorView??????SimpleIndicatorView?????

??

  1. ??Indicator???
  2. ???Indicator?????tab???????????
  3. Indicator????indicator???????????
  4. ???????????????tab????????
  5. ??????Indicator????????????????
  6. SimpleIndicatorView????indicator?????????????????
  7. SimpleIndicatorView???????????????????????????????????
  8. ??ViewPager???
  9. ??????
  10. ??padding????????????
  11. ????????
  12. java????????????ViewPager?????????????

????

  compile 'cn.carbs.android:IndicatorView:1.0.1' 

????

xml????????

SimpleIndicatorView?IndicatorView???????????????????????????????????????xml????????????????view???????????????????????SimpleIndicatorView?????????????

1.??IndicatorView?xml??????

  <cn.carbs.android.indicatorview.library.IndicatorView

android:id="@+id/indicator_view"

android:layout_width="match_parent"

android:layout_height="60dp"

android:layout_marginTop="20dp"

android:background="#ffeeeeee"

android:paddingLeft="2dp"

android:paddingRight="2dp"

app:iv_IndicatorColorEnd="#ffee5544"

app:iv_IndicatorColorGradient="true"

app:iv_IndicatorColorStart="#ff3388ff"

app:iv_IndicatorEven="false"

app:iv_IndicatorLengthExtra="3dp"

app:iv_IndicatorTextArray="@array/text_arrays_2"

app:iv_IndicatorTextGap="20dp"

app:iv_IndicatorTextSize="20dp"/> 

2.??SimpleIndicatorView?xml??????

<cn.carbs.android.indicatorview.library.SimpleIndicatorView

android:id="@+id/simple_indicator_view_v"

android:layout_width="4dp"

android:layout_height="match_parent"

android:layout_alignParentLeft="true"

app:iv_SimpleIndicatorColorEnd="#ffee5544"

app:iv_SimpleIndicatorColorGradient="true"

app:iv_SimpleIndicatorColorStart="#ff3388ff"

app:iv_SimpleIndicatorCount="4"

app:iv_SimpleIndicatorLinePosition="start"

app:iv_SimpleIndicatorOrientation="vertical"

app:iv_SimpleIndicatorWidthRation="0.8"/> 

?????????????

java???????

????ViewPager?????Java???????

  mIndicatorView.setViewPager(mViewpager);
 

???????????????????????

  //?IndicatorView?????????1
mIndicatorView.increaseSelectedIndexWithViewPager();

//?IndicatorView?????????1
mIndicatorView.decreaseSelectedIndexWithViewPager();

//?IndicatorView????????
mIndicatorView.setIndexWithViewPager(int indexDest);
 

IndicatorView???????????

  mIndicatorView.setOnIndicatorChangedListener(new IndicatorView.OnIndicatorChangedListener() {

 @Override

 public void onIndicatorChanged(int oldSelectedIndex, int newSelectedIndex) {

  //?????ViewPager?????????????ViewPager???

 
}

}
);
 

????

  1. IndicatorLengthExtra???????????0?dimension???????????????????????????????;
  2. ????Java??????view;
  3. IndicatorView??????????SimpleIndicatorView?????????
  4. IndicatorView??ViewPager????SimpleIndicatorView???

????

IndicatorView?????

<declare-styleable name="IndicatorView">

<attr name="iv_IndicatorEven" format="reference|boolean" /> //??????????

<attr name="iv_IndicatorColor" format="reference|color" />  //indicator???

<attr name="iv_IndicatorColorStart" format="reference|color" /> //indicator??????indicator?????????????iv_IndicatorColorGradient???????

<attr name="iv_IndicatorColorEnd" format="reference|color" />
//indicator??????iv_IndicatorColorGradient???????

<attr name="iv_IndicatorColorGradient" format="reference|boolean" />//????indicator?????????

<attr name="iv_IndicatorTextGap" format="reference|dimension" />  //??text??????????????????(iv_IndicatorEven="false")

<attr name="iv_IndicatorTextArray" format="reference" />//???tab??

<attr name="iv_IndicatorTextSize" format="reference|dimension" />//???tab???????

<attr name="iv_IndicatorTextColorNormal" format="reference|color" />//???tab????????????(iv_IndicatorColorGradient="false"?????)

<attr name="iv_IndicatorTextColorSelected" format="reference|color" />//???tab???????????(iv_IndicatorColorGradient="false"?????)

<attr name="iv_IndicatorLengthExtra" format="reference|dimension" />//indicator????tab????????

<attr name="iv_IndicatorDuration" format="reference|integer" />//indicator??????????

<attr name="iv_IndicatorSelectedIndex" format="reference|integer" />//???????

<attr name="iv_IndicatorHeight" format="reference|dimension" />//indicator???

<attr name="iv_IndicatorBgTouchedColor" format="reference|color" />//????tab????????

<attr name="iv_IndicatorViewPagerAnim" format="reference|boolean" />//??tab???????ViewPager????????????true
  </declare-styleable>

SimpleIndicatorView?????


 <declare-styleable name="SimpleIndicatorView">

<attr name="iv_SimpleIndicatorColor" format="reference|color" />//indicator???

<attr name="iv_SimpleIndicatorColorStart" format="reference|color" />//indicator??????indicator?????????????iv_IndicatorColorGradient???????

<attr name="iv_SimpleIndicatorColorEnd" format="reference|color" />//indicator??????iv_IndicatorColorGradient???????

<attr name="iv_SimpleIndicatorColorGradient" format="reference|boolean" />//????indicator?????????

<attr name="iv_SimpleIndicatorCount" format="reference|integer" />//?????????

<attr name="iv_SimpleIndicatorWidthRation" format="reference|float" />//indicator?????????????

<attr name="iv_SimpleIndicatorDuration" format="reference|integer" />//indicator??????????

<attr name="iv_SimpleIndicatorDefaultIndex" format="reference|integer" />//???????

<attr name="iv_SimpleIndicatorLineColor" format="reference|color" />//????????

<attr name="iv_SimpleIndicatorLineShow" format="reference|boolean" />//????????

<attr name="iv_SimpleIndicatorLineThickness" format="reference|dimension" />//???????

<attr name="iv_SimpleIndicatorOrientation" format="enum">//indicator??????????

 <enum name="horizontal" value="0" />

 <enum name="vertical" value="1" />

</attr>

<attr name="iv_SimpleIndicatorLinePosition" format="enum">//??????????????????????????????????????????

 <enum name="start" value="0" />

 <enum name="end" value="1" />

</attr>
  </declare-styleable> 

#English

IndicatorView on Android platform to indicator the current index of pages

Abstract

Android IndicatorView inspired by SlidingTabView, this project was to practice customizing view, but as i kept working on it, now it has some interesting attributes.
This view's defects compared to SlidingTabView is it cannot scroll the Strings to adjust the content to the center when pressed content is not shown completely, and in parttime i will refine this funtion.
BTW, it donot have ripple effect neither.

Application Scenarios

tabs not fill the width of screen.

Screenshot

left picture includes IndicatorView and SimpleIndicatorView, right one just presents SimpleIndicatorView sample.

Functions and Attributes

  1. can change position gradually correspondding to ViewPager;
  2. show even Indicators?
  3. show uneven Indicators, can adjust width of indicator automatically correspondding to the current text
  4. can set the extra length of indicator compared to each text;
  5. can set Gradient color of indicator when indicator changing its position, making UI more friendly;
  6. can set Gradient color of text when indicator changing its position, making UI more friendly;
  7. can set SimpleIndicatorView's width ratio, correspondding to each Unit's width;
  8. can set SimpleIndicatorView's orientation, horizontal or vertical. can add a line at start or end of this SimpleIndicatorView.
  9. can change position from first item to last one, vice versa.
  10. support padding, support pressed effect.
  11. can set texts at once.
  12. can control IndicatorView by using only one line of java code, if you want it to move correspondding to ViewPager.

Add to project

  compile 'cn.carbs.android:IndicatorView:1.0.1' 

How to use

add view in xml

Since SimpleIndicatorView and IndicatorView are in different style and have many different attributes, I made two attr xml files. and SimpleIndicatorView is of Low Coupling compared with IndicatorView.

1.as to IndicatorView, in xml:

  <cn.carbs.android.indicatorview.library.IndicatorView

android:id="@+id/indicator_view"

android:layout_width="match_parent"

android:layout_height="60dp"

android:layout_marginTop="20dp"

android:background="#ffeeeeee"

android:paddingLeft="2dp"

android:paddingRight="2dp"

app:iv_IndicatorColorEnd="#ffee5544"

app:iv_IndicatorColorGradient="true"

app:iv_IndicatorColorStart="#ff3388ff"

app:iv_IndicatorEven="false"

app:iv_IndicatorLengthExtra="3dp"

app:iv_IndicatorTextArray="@array/text_arrays_2"

app:iv_IndicatorTextGap="20dp"

app:iv_IndicatorTextSize="20dp"/> 

2.as to SimpleIndicatorView, in xml

<cn.carbs.android.indicatorview.library.SimpleIndicatorView

android:id="@+id/simple_indicator_view_v"

android:layout_width="4dp"

android:layout_height="match_parent"

android:layout_alignParentLeft="true"

app:iv_SimpleIndicatorColorEnd="#ffee5544"

app:iv_SimpleIndicatorColorGradient="true"

app:iv_SimpleIndicatorColorStart="#ff3388ff"

app:iv_SimpleIndicatorCount="4"

app:iv_SimpleIndicatorLinePosition="start"

app:iv_SimpleIndicatorOrientation="vertical"

app:iv_SimpleIndicatorWidthRation="0.8"/> 

attrs' introduction is at the end of this file

control view by java code:

if you want IndicatorView move correspondding to ViewPager, add code :

  mIndicatorView.setViewPager(mViewpager);
 

if you want to change its index, you can use one of these three mothods:

  //increase IndicatorView's index by 1
mIndicatorView.increaseSelectedIndexWithViewPager();

//decrease IndicatorView's index by 1
mIndicatorView.decreaseSelectedIndexWithViewPager();

//make IndicatorView refer to random index
mIndicatorView.setIndexWithViewPager(int indexDest);
 

set callback when IndicatorView's state changed:

  mIndicatorView.setOnIndicatorChangedListener(new IndicatorView.OnIndicatorChangedListener() {

 @Override

 public void onIndicatorChanged(int oldSelectedIndex, int newSelectedIndex) {

  //if has set interaction with viewpager, donot set ViewPager's state here

 
}

}
);
 

Attention

  1. the attribute IndicatorLengthExtra should be larger than 0dp, i didnot set limitation of this value.
  2. not support generate this view by java code, only support add view in xml;
  3. IndicatorView can only move in horizontal, SimpleIndicatorView can move in both horizontal and vertical;
  4. IndicatorView can move correspondding to ViewPager, but SimpleIndicatorView cannot.

Attributes

IndicatorView's attributes

<declare-styleable name="IndicatorView">

<attr name="iv_IndicatorEven" format="reference|boolean" /> //set if each item's width is equal

<attr name="iv_IndicatorColor" format="reference|color" />  //indicator's color

<attr name="iv_IndicatorColorStart" format="reference|color" /> //indicator's color when it start to move, color will change as indicator moving, valid if iv_IndicatorColorGradient is true

<attr name="iv_IndicatorColorEnd" format="reference|color" /> //indicator's color when it end, color will change as indicator moving, valid if iv_IndicatorColorGradient is true

<attr name="iv_IndicatorColorGradient" format="reference|boolean" />//if use gradient color effect

<attr name="iv_IndicatorTextGap" format="reference|dimension" />// each text's gap to the next one, valid if  iv_IndicatorEven is false(only in uneven mode)

<attr name="iv_IndicatorTextArray" format="reference" />//show tab's title

<attr name="iv_IndicatorTextSize" format="reference|dimension" />//tab's text size

<attr name="iv_IndicatorTextColorNormal" format="reference|color" />//tab's text color when not selected. valid when iv_IndicatorColorGradient="false"

<attr name="iv_IndicatorTextColorSelected" format="reference|color" />//tab's text color when not select. valid when iv_IndicatorColorGradient="false"

<attr name="iv_IndicatorLengthExtra" format="reference|dimension" />//equal to half of (indicator's length minus each tab's width)

<attr name="iv_IndicatorDuration" format="reference|integer" />//duration of switching indicator from one index to another

<attr name="iv_IndicatorSelectedIndex" format="reference|integer" />//default selected index

<attr name="iv_IndicatorHeight" format="reference|dimension" />//indicator's height

<attr name="iv_IndicatorBgTouchedColor" format="reference|color" />//background color when pressed one tab

<attr name="iv_IndicatorViewPagerAnim" format="reference|boolean" />//when selected a tab, set true to make the correspondding ViewPager scroll with animation,false without animation. this value is the argument in setCurrentItem(int, boolean) of ViewPager
 </declare-styleable>

SimpleIndicatorView's attrs


 <declare-styleable name="SimpleIndicatorView">

<attr name="iv_SimpleIndicatorColor" format="reference|color" />//indicator's color

<attr name="iv_SimpleIndicatorColorStart" format="reference|color" />//indicator's color when it start to move, color will change as indicator moving, valid if iv_SimpleIndicatorColorGradient is true

<attr name="iv_SimpleIndicatorColorEnd" format="reference|color" />//indicator's color when it end, color will change as indicator moving, valid if iv_SimpleIndicatorColorGradient is true

<attr name="iv_SimpleIndicatorColorGradient" format="reference|boolean" />//if use gradient color effect

<attr name="iv_SimpleIndicatorCount" format="reference|integer" />//count number of units

<attr name="iv_SimpleIndicatorWidthRation" format="reference|float" />//ratio of indicator width divided by each even unit's width

<attr name="iv_SimpleIndicatorDuration" format="reference|integer" />//duration of switching indicator from one index to another

<attr name="iv_SimpleIndicatorDefaultIndex" format="reference|integer" />//default selected index

<attr name="iv_SimpleIndicatorLineColor" format="reference|color" />//hint line's color

<attr name="iv_SimpleIndicatorLineShow" format="reference|boolean" />//if show hint line

<attr name="iv_SimpleIndicatorLineThickness" format="reference|dimension" />//height of hint line

<attr name="iv_SimpleIndicatorOrientation" format="enum">//indicator in horizontal or vertical

 <enum name="horizontal" value="0" />

 <enum name="vertical" value="1" />

</attr>

<attr name="iv_SimpleIndicatorLinePosition" format="enum">//hint line's position, when indicator is in horizontal, hint line can be at bottom or top of indicator; when indicator is in vertical, hint line can be at left or right of the indicator.

 <enum name="start" value="0" />

 <enum name="end" value="1" />

</attr>
  </declare-styleable> 

License

Copyright 2016 Carbs.Wang (IndicatorView)  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

The Cult will provide a new layout for your Toolbar. This allow you to use with a custom SearchView with animation and more.

Android quick access to 1000+ pre-loaded @colors!

ColorPhrase is an Android string resource color setting library.

A framework used to bridge one or more spans for use with a TextView.

A practical tool which helps users to slice and share their pictures.

Features:

  • Displaying all pictures of system Gallery
  • Slicing and resizing pictures
  • Sharing all slices at once
  • Concurrent optimization

Wave effect of activity animation.

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