1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-11-13 13:05:03 -05:00
k-9/src/com/fsck/k9/view/SingleMessageView.java

14 lines
298 B
Java
Raw Normal View History

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);
}
}