diff --git a/res/layout/episodes_fragment.xml b/res/layout/episodes_fragment.xml index 5536a5545..da350af15 100644 --- a/res/layout/episodes_fragment.xml +++ b/res/layout/episodes_fragment.xml @@ -6,7 +6,11 @@ + android:layout_height="match_parent" + android:childDivider="@android:color/transparent" + android:divider="@android:color/transparent" + android:dividerHeight="3dp" + android:paddingLeft="8dp" > \ No newline at end of file diff --git a/res/layout/external_itemlist_item.xml b/res/layout/external_itemlist_item.xml index 6f2405abc..a2d496128 100644 --- a/res/layout/external_itemlist_item.xml +++ b/res/layout/external_itemlist_item.xml @@ -37,30 +37,16 @@ android:layout_toLeftOf="@id/butAction" android:layout_toRightOf="@id/imgvFeedimage" android:ellipsize="end" - android:maxLines="1" + android:lines="2" android:textColor="?android:attr/textColorPrimary" android:textSize="@dimen/text_size_small" /> - - @@ -103,4 +90,20 @@ android:padding="2dp" android:src="@drawable/av_play_dark" /> + + \ No newline at end of file diff --git a/res/layout/feeditemlist_header.xml b/res/layout/feeditemlist_header.xml index 4dbeae28b..e03f22e4a 100644 --- a/res/layout/feeditemlist_header.xml +++ b/res/layout/feeditemlist_header.xml @@ -1,38 +1,45 @@ - + android:background="?attr/borderless_button" + android:orientation="vertical" > - + android:layout_height="match_parent" > - + - \ No newline at end of file + + + + \ No newline at end of file diff --git a/res/values/dimens.xml b/res/values/dimens.xml index a74ccf1a9..3b7e7475a 100644 --- a/res/values/dimens.xml +++ b/res/values/dimens.xml @@ -11,5 +11,5 @@ 18sp 22sp 36dp - 70dp + 80dp \ No newline at end of file diff --git a/src/de/danoeh/antennapod/adapter/ExternalEpisodesListAdapter.java b/src/de/danoeh/antennapod/adapter/ExternalEpisodesListAdapter.java index 9989fb283..cde21895f 100644 --- a/src/de/danoeh/antennapod/adapter/ExternalEpisodesListAdapter.java +++ b/src/de/danoeh/antennapod/adapter/ExternalEpisodesListAdapter.java @@ -231,7 +231,7 @@ public class ExternalEpisodesListAdapter extends BaseExpandableListAdapter { TextView headerTitle = (TextView) convertView .findViewById(R.id.txtvHeaderTitle); ImageButton actionButton = (ImageButton) convertView - .findViewById(R.id.butAction); + .findViewById(R.id.butAction); String headerString = null; if (groupPosition == 0) { headerString = context.getString(R.string.queue_label);