1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-08-13 17:03:48 -04:00

- Changing the order of the date and subject TextViews in the XML file should fix the overlapping text issues

- Prettified message_list_item_touchable.xml

Fixes issue 1350
This commit is contained in:
cketti 2010-04-26 17:10:46 +00:00
parent 55d70c3bf7
commit bad67d5e17

View File

@ -3,83 +3,80 @@
xmlns:android="http://schemas.android.com/apk/res/android" xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_width="fill_parent"
android:layout_height="?android:attr/listPreferredItemHeight" android:layout_height="?android:attr/listPreferredItemHeight"
android:background="#cccccc"
android:paddingTop="2dip" android:paddingTop="2dip"
> android:background="#ccc" >
<RelativeLayout <RelativeLayout
android:id="@+id/chip" android:id="@+id/chip"
android:background="@android:color/transparent"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_marginRight="2dip"
android:layout_height="fill_parent" android:layout_height="fill_parent"
android:layout_centerVertical="true" android:layout_centerVertical="true"
android:layout_alignParentLeft="true" android:layout_alignParentLeft="true"
> android:layout_marginRight="2dip"
<View android:background="@android:color/transparent" >
android:layout_width="4dip"
android:layout_height="fill_parent" <View
/> android:layout_width="4dip"
<CheckBox android:layout_height="fill_parent" />
android:id="@+id/selected_checkbox"
android:layout_width="24dip" <CheckBox
android:layout_height="wrap_content" android:id="@+id/selected_checkbox"
android:button="@drawable/checkbox" android:layout_width="24dip"
android:layout_centerVertical="true" android:layout_height="wrap_content"
android:layout_alignParentLeft="true" android:layout_centerVertical="true"
android:focusable="false" android:layout_alignParentLeft="true"
android:visibility="gone" android:button="@drawable/checkbox"
/> android:focusable="false"
</RelativeLayout> android:visibility="gone" />
<CheckBox
android:id="@+id/flagged" </RelativeLayout>
android:layout_width="wrap_content"
android:layout_height="wrap_content" <CheckBox
android:focusable="false" android:id="@+id/flagged"
style="?android:attr/starStyle" android:layout_width="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignParentBottom="true"
android:layout_gravity="bottom"
/>
<TextView
android:id="@+id/subject"
android:ellipsize="end"
android:singleLine="true"
android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="?android:attr/textColorPrimary"
android:layout_width="fill_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_marginLeft="1dip" android:layout_alignParentRight="true"
android:layout_toLeftOf="@id/date" android:layout_alignParentBottom="true"
android:layout_toRightOf="@+id/chip" android:layout_gravity="bottom"
android:layout_marginRight="1dip" style="?android:attr/starStyle"
/> android:focusable="false" />
<TextView <TextView
android:id="@+id/date" android:id="@+id/date"
android:textAppearance="?android:attr/textAppearanceSmall"
android:singleLine="true"
android:paddingLeft="5dip"
android:textColor="?android:attr/textColorSecondary"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:background="@android:color/transparent" android:layout_alignParentRight="true"
/> android:layout_alignParentTop="true"
<TextView android:paddingLeft="5dip"
android:id="@+id/preview" android:singleLine="true"
android:layout_below="@id/subject" android:textColor="?android:attr/textColorSecondary"
android:layout_toRightOf="@id/chip" android:textAppearance="?android:attr/textAppearanceSmall" />
android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="?android:attr/textColorTertiary"
android:singleLine="false"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_marginLeft="1dip"
android:layout_toLeftOf="@id/flagged"
android:layout_marginRight="0dip"
android:bufferType="spannable"
/>
<TextView
android:id="@+id/subject"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_toLeftOf="@id/date"
android:layout_toRightOf="@+id/chip"
android:layout_marginLeft="1dip"
android:layout_marginRight="1dip"
android:singleLine="true"
android:ellipsize="end"
android:textColor="?android:attr/textColorPrimary"
android:textAppearance="?android:attr/textAppearanceSmall" />
<TextView
android:id="@+id/preview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_below="@id/subject"
android:layout_toLeftOf="@id/flagged"
android:layout_toRightOf="@id/chip"
android:layout_marginLeft="1dip"
android:layout_marginRight="0dip"
android:singleLine="false"
android:bufferType="spannable"
android:textColor="?android:attr/textColorTertiary"
android:textAppearance="?android:attr/textAppearanceSmall" />
</RelativeLayout> </RelativeLayout>