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"?>
<LinearLayout
<com.fsck.k9.view.SingleMessageView
android:id="@+id/message_view"
android:orientation="vertical"
android:layout_width="fill_parent"
@ -223,4 +223,4 @@
android:layout_height="wrap_content"
android:visibility="gone"
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);
}
}