Skip to content

cuongnv126/segmentview

Repository files navigation

Android SegmentView

Simple SegmentView for Android with easily usage.

Usage

Easily using in xml layout:

<org.cuongnv.segmentview.SegmentLayout
    android:layout_width="match_parent"
    android:layout_height="40dp"
    android:layout_marginTop="20dp"
    android:background="@drawable/bg_segment_background"
    android:padding="@dimen/segment_stroke_width"
    app:layout_constraintTop_toTopOf="parent"
    app:sgm_isFixSize="false"
    app:sgm_selectedDrawable="@drawable/bg_segment_selected">

    <TextView
        style="@style/SimpleTextView"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:text="@string/text1" />

    <TextView
        style="@style/SimpleTextView"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:text="@string/text2" />
</org.cuongnv.segmentview.SegmentLayout>

Define via code:

val options = arrayOf(R.string.text1, R.string.text2, R.string.text3)

// Build SegmentView programmatically.
findViewById<SegmentLayout>(R.id.segment_view).apply {
    reset()
    options.forEach { resId ->
        addView(
            TextView(this@MainActivity).apply {
                TextViewCompat.setTextAppearance(this, R.style.SimpleTextView)
                setText(resId)
            },
            ViewGroup.MarginLayoutParams(
                ViewGroup.MarginLayoutParams.WRAP_CONTENT,
                ViewGroup.MarginLayoutParams.MATCH_PARENT
            )
        )
    }
}

Customize:

By changing drawable of android:background, sgm_selectedDrawable and style of child view.

License

Copyright 2021 Cuong V. Nguyen (github.com/cuongnv126).

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.

About

Simple SegmentView for Android with easily usage.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages