mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-13 13:05:03 -05:00
14 lines
298 B
Java
14 lines
298 B
Java
|
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);
|
||
|
}
|
||
|
}
|