Skip to content

An Expandable TextView library for Android written in Kotlin

Notifications You must be signed in to change notification settings

sanjaydraws/ShowMoreTextView

Repository files navigation

ShowMoreTextView

latestVersion Twitter: sanjay_draws

Android showMoretextview

video

Implementation

Step 1. Add the JitPack repository to your build file

Add it in your root build.gradle at the end of repositories:

allprojects {
		repositories {
			...
			maven { url 'https://jitpack.io' }
		}
	}

Step 2. Add the dependency

dependencies
{
    implementation 'com.github.sanjaydraws:ShowMoreTextView:1.0.3'
}

How to use

  <com.sanjayprajapat.showmoretextview.ShowMoreTextView
            android:layout_width="wrap_content"
            android:id="@+id/showMoreText"
            android:layout_height="wrap_content"
            app:showMoreMaxLine="3"
            android:text="@string/long_text"
            app:showMoreTextColor="#87012B"
            app:showMoreText="...Show More"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintTop_toTopOf="parent"
            />

add StateChangeListener when TextState changes

 binding?.showMoreText?.addOnStateChangeListener(object :StateChangeListener{
            override fun onStateChange(textState: TextState) {
                when(textState){
                    TextState.EXPANDED -> Toast.makeText(this@MainActivity, "Expanded",Toast.LENGTH_SHORT).show()
                    TextState.COLLAPSED -> Toast.makeText(this@MainActivity, "Collapsed",Toast.LENGTH_SHORT).show()
                }
            }
        })

✍️ Author

👤 Sanjay Prajapat

Feel free to ping me 😉

🤝 Contributing

Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are greatly appreciated.

  1. Open an issue first to discuss what you would like to change.
  2. Fork the Project
  3. Create your feature branch (git checkout -b feature/amazing-feature)
  4. Commit your changes (git commit -m 'Add some amazing feature')
  5. Push to the branch (git push origin feature/amazing-feature)
  6. Open a pull request

Please make sure to update tests as appropriate.

❤ Show your support

Give a ⭐️ if this project helped you!

📝 License

Copyright © 2022 - Sanjay Prajapat

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

   https://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.

This README was generated by readgen

About

An Expandable TextView library for Android written in Kotlin

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages