Polish and layout adjustments to comments list

pull/14/head
Sam Bosley 12 years ago
parent c6e2085549
commit 60b55c9197

@ -37,8 +37,10 @@
android:id="@android:id/list" android:id="@android:id/list"
android:layout_width="fill_parent" android:layout_width="fill_parent"
android:layout_height="fill_parent" android:layout_height="fill_parent"
android:layout_weight="100" /> android:layout_weight="100"
style="@style/ListView"
android:divider="@android:color/transparent"/>
<ProgressBar <ProgressBar
android:id="@+id/comments_progressBar" android:id="@+id/comments_progressBar"
style="@android:style/Widget.ProgressBar.Horizontal" style="@android:style/Widget.ProgressBar.Horizontal"

@ -4,6 +4,7 @@
xmlns:astrid="http://schemas.android.com/apk/res/com.timsu.astrid" xmlns:astrid="http://schemas.android.com/apk/res/com.timsu.astrid"
android:layout_width="fill_parent" android:layout_width="fill_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:minHeight="55dip"
android:orientation="vertical"> android:orientation="vertical">
<RelativeLayout <RelativeLayout
@ -43,9 +44,11 @@
android:layout_width="fill_parent" android:layout_width="fill_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_below="@id/title" android:layout_below="@id/title"
android:layout_marginLeft="50dip" android:layout_alignLeft="@id/title"
android:paddingTop="3dip" android:layout_marginLeft="54dip"
android:paddingTop="1dip"
style="@style/TextAppearance.TAd_ItemDueDate" style="@style/TextAppearance.TAd_ItemDueDate"
android:textStyle="normal"
android:gravity="left" android:gravity="left"
android:ellipsize="end" android:ellipsize="end"
android:textSize="12sp" android:textSize="12sp"

@ -69,7 +69,7 @@
<item name="asFilterHeaderColor">#ffffff</item> <item name="asFilterHeaderColor">#ffffff</item>
<item name="asFilterHeaderBackground">@drawable/edit_titlebar_white</item> <item name="asFilterHeaderBackground">@drawable/edit_titlebar_white</item>
<item name="asMembersHeaderBackground">#d0d0d0</item> <item name="asMembersHeaderBackground">#d0d0d0</item>
<item name="asListDividerColor">#cccccc</item> <item name="asListDividerColor">#dddddd</item>
<item name="asAddButtonImg">@drawable/plus_button_red</item> <item name="asAddButtonImg">@drawable/plus_button_red</item>
<item name="asMicButtonImg">@drawable/mic_button_red</item> <item name="asMicButtonImg">@drawable/mic_button_red</item>
<item name="asCommentButtonImg">@drawable/comment_red</item> <item name="asCommentButtonImg">@drawable/comment_red</item>

@ -251,9 +251,9 @@ public class UpdateAdapter extends CursorAdapter {
user = ContextManager.getString(R.string.ENA_no_user); user = ContextManager.getString(R.string.ENA_no_user);
} }
String userLink = linkify(user, linkColor); String userLink = user; //linkify(user, linkColor);
String targetNameLink = linkify(targetName, linkColor); String targetNameLink = targetName; //linkify(targetName, linkColor);
String otherUserLink = linkify(otherUser, linkColor); String otherUserLink = otherUser; //linkify(otherUser, linkColor);
int commentResource = 0; int commentResource = 0;
if (actionCode.equals(UPDATE_FRIENDS)) { if (actionCode.equals(UPDATE_FRIENDS)) {

Loading…
Cancel
Save