Improved layout of chaperlist

This commit is contained in:
daniel oeh 2013-09-28 12:25:52 +02:00
parent 79cb4b35a8
commit 83bb0a6084
2 changed files with 11 additions and 4 deletions

View File

@ -2,7 +2,8 @@
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingBottom="8dp" >
android:paddingBottom="12dp"
android:paddingTop="12dp">
<TextView
android:id="@+id/txtvStart"
@ -11,7 +12,8 @@
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:layout_margin="8dp"
android:textColor="?android:attr/textColorSecondary" />
android:textColor="?android:attr/textColorSecondary"
android:textSize="@dimen/text_size_small"/>
<TextView
android:id="@+id/txtvTitle"
@ -19,9 +21,10 @@
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_margin="8dp"
android:padding="8dp"
android:layout_toLeftOf="@id/txtvStart"
android:textStyle="bold" />
android:textColor="?android:attr/textColorPrimary"
android:textSize="@dimen/text_size_small"/>
<TextView
android:id="@+id/txtvLink"
@ -34,6 +37,7 @@
android:layout_toLeftOf="@id/txtvStart"
android:focusable="false"
android:focusableInTouchMode="false"
android:visibility="gone"
android:maxLines="2" />
</RelativeLayout>

View File

@ -128,8 +128,11 @@ public class ChapterListAdapter extends ArrayAdapter<Chapter> {
if (current == sc) {
holder.title.setTextColor(convertView.getResources().getColor(
R.color.bright_blue));
holder.start.setTextColor(convertView.getResources().getColor(
R.color.bright_blue));
} else {
holder.title.setTextColor(defaultTextColor);
holder.start.setTextColor(defaultTextColor);
}
} else {
Log.w(TAG, "Could not find out what the current chapter is.");