Skip to content

Commit

Permalink
v1.2.3
Browse files Browse the repository at this point in the history
• Remove scrollbar fading. Always shows scrollbar when view is scrollable.
  • Loading branch information
kishannareshpal committed Dec 11, 2018
1 parent 434a6aa commit 8110049
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ android {
minSdkVersion 17
targetSdkVersion 28
versionCode 1
versionName "v1.2.2"
versionName "v1.2.3"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
Expand Down
4 changes: 2 additions & 2 deletions superdialog/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apply plugin: 'com.android.library'
apply plugin: 'com.github.dcendents.android-maven'
group = 'com.github.kishannareshpal'
version = 'v1.2.2'
version = 'v1.2.3'

android {
compileSdkVersion 28
Expand All @@ -12,7 +12,7 @@ android {
minSdkVersion 17
targetSdkVersion 28
versionCode 1
versionName "v1.2.2"
versionName "v1.2.3"

testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"

Expand Down
8 changes: 4 additions & 4 deletions superdialog/src/main/res/layout/superdialog_main.xml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="14dp">
android:layout_marginBottom="8dp"
android:fadeScrollbars="false">

<LinearLayout
android:layout_width="match_parent"
Expand All @@ -63,14 +64,13 @@
android:id="@+id/tv_message"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
android:breakStrategy="simple"
android:gravity="center_horizontal"
android:maxLines="14"
android:paddingStart="24dp"
android:paddingEnd="24dp"
android:visibility="gone"
tools:visibility="visible"
/>
tools:visibility="visible" />
</LinearLayout>
</ScrollView>

Expand Down

0 comments on commit 8110049

Please sign in to comment.