Description scrollable and show real manga status.

This commit is contained in:
inorichi
2016-01-03 01:20:31 +01:00
parent 868058a50b
commit 829c2d5faa
6 changed files with 49 additions and 25 deletions

View File

@@ -212,14 +212,20 @@
android:singleLine="false"
android:text="@string/description" />
<TextView
android:id="@+id/manga_summary"
style="@style/manga_detail_text"
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:focusable="false"
android:focusableInTouchMode="false"
android:singleLine="false" />
android:layout_height="match_parent">
<TextView
android:id="@+id/manga_summary"
style="@style/manga_detail_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:focusable="false"
android:focusableInTouchMode="false"
android:singleLine="false" />
</ScrollView>
</LinearLayout>