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

Switch the Message view to our new SingleMessageView

This commit is contained in:
Jesse Vincent 2011-02-10 19:29:46 -05:00
parent d29781b2fd
commit d634bcb381
2 changed files with 15 additions and 2 deletions

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<LinearLayout <com.fsck.k9.view.SingleMessageView
android:id="@+id/message_view" android:id="@+id/message_view"
android:orientation="vertical" android:orientation="vertical"
android:layout_width="fill_parent" android:layout_width="fill_parent"
@ -223,4 +223,4 @@
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:visibility="gone" android:visibility="gone"
android:layout_width="fill_parent" /> android:layout_width="fill_parent" />
</LinearLayout> </com.fsck.k9.view.SingleMessageView>

View File

@ -0,0 +1,13 @@
package com.fsck.k9.view;
import android.content.Context;
import android.util.AttributeSet;
import android.widget.LinearLayout;
/**
*/
public class SingleMessageView extends LinearLayout{
public SingleMessageView(Context context, AttributeSet attrs) {
super(context, attrs);
}
}