mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-04 16:45:09 -05:00
Switch the Message view to our new SingleMessageView
This commit is contained in:
parent
d29781b2fd
commit
d634bcb381
@ -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>
|
||||||
|
13
src/com/fsck/k9/view/SingleMessageView.java
Normal file
13
src/com/fsck/k9/view/SingleMessageView.java
Normal 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);
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user