mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-23 09:52:16 -05:00
small layout fixes
This commit is contained in:
parent
70dadb3843
commit
ebfbb9e5b2
@ -19,21 +19,19 @@
|
|||||||
android:textAppearance="?android:attr/textAppearanceSmall"
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
||||||
android:textSize="11sp"
|
android:textSize="11sp"
|
||||||
android:textColor="?android:attr/textColorPrimary"
|
android:textColor="?android:attr/textColorPrimary"
|
||||||
android:layout_width="200px"
|
android:layout_width="250px"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:paddingLeft="10px"
|
android:paddingLeft="10px"
|
||||||
android:layout_marginRight="1px" />
|
android:layout_marginRight="1px" />
|
||||||
<TextView
|
<TextView
|
||||||
android:id="@+id/from"
|
android:id="@+id/from"
|
||||||
android:textSize="9sp"
|
android:textSize="9sp"
|
||||||
android:ellipsize="end"
|
|
||||||
android:singleLine="true"
|
android:singleLine="true"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="70px"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:textAppearance="?android:attr/textAppearanceSmall"
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
||||||
android:textColor="?android:attr/textColorSecondary"
|
android:textColor="?android:attr/textColorSecondary"
|
||||||
android:paddingRight="5px"
|
android:paddingRight="5px"
|
||||||
android:layout_below="@+id/date"
|
|
||||||
android:layout_alignParentRight="true"
|
android:layout_alignParentRight="true"
|
||||||
android:layout_alignParentBottom="true"
|
android:layout_alignParentBottom="true"
|
||||||
/>
|
/>
|
||||||
|
@ -1177,7 +1177,7 @@ public class FolderMessageList extends ExpandableListActivity {
|
|||||||
holder.from.setText(message.sender);
|
holder.from.setText(message.sender);
|
||||||
holder.from.setTypeface(null, message.read ? Typeface.NORMAL : Typeface.BOLD);
|
holder.from.setTypeface(null, message.read ? Typeface.NORMAL : Typeface.BOLD);
|
||||||
holder.date.setText(message.date);
|
holder.date.setText(message.date);
|
||||||
holder.from.setCompoundDrawablesWithIntrinsicBounds(null, null,
|
holder.subject.setCompoundDrawablesWithIntrinsicBounds(null, null,
|
||||||
message.hasAttachments ? mAttachmentIcon : null, null);
|
message.hasAttachments ? mAttachmentIcon : null, null);
|
||||||
// if (folder.outbox) {
|
// if (folder.outbox) {
|
||||||
// holder.status.setText("Sending");
|
// holder.status.setText("Sending");
|
||||||
|
Loading…
Reference in New Issue
Block a user