Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

halit4603/AndroidSegment

Open more actions menu
 
 

Repository files navigation

AndroidSegment

Download

Add segments to your app easily and dynamically.

alt text

Gradle dependency

allprojects {
repositories {
    jcenter()
  }
}

compile 'com.techhelper.segment:AndroidSegment:1.0.0'

Steps to use this library

1. Add below code to your layout xml file to add segment widget.

<com.techhelper.segment.Segment
        android:id="@+id/segments"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_marginLeft="15dp"
        android:layout_marginRight="15dp"
        android:layout_marginTop="15dp"
        android:gravity="center_horizontal"
        app:segmentBackgroundColor="#007AF3"
        app:segmentTextColor="@android:color/white"
        app:segmentTextSize="10sp" />

2. Below code is to setup segment widget.

private void setupSegment() {
        Segment segment = (Segment) findViewById(R.id.segments);
        List<String> segmentTitles = Arrays.asList("Seg A", "Seg B", "Seg C");
        segment.setTitles(segmentTitles);
        segment.setSegmentChecked(0, true);

    }

3. Below code is to set segment change listener.

segment.setOnSegmentCheckedChangedListener(this);

@Override
    public void onSegmentCheckedChanged(int position, CompoundButton buttonView, boolean isChecked) {
        Toast.makeText(this, "Segment selected " + position, Toast.LENGTH_SHORT).show();
    }

Contributing

Please feel free to contribute by following standard process of reviewing pull requests and other git commands.

License

This project is licensed under the [Apache-2.0] - see the LICENSE file for details

About

Add segments to your app easily and dynamically.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 100.0%
Morty Proxy This is a proxified and sanitized view of the page, visit original site.