summaryrefslogtreecommitdiff
path: root/src/us/minak/IMEView.java
blob: 89d6d0a57ddbf031337fa0a6ae470f1faf6222ee (plain)
1
2
3
4
5
6
7
8
9
10
11
package us.minak;

import android.content.Context;
import android.util.AttributeSet;
import android.widget.RelativeLayout;

public class IMEView extends RelativeLayout{
	public IMEView(Context context, AttributeSet attrs) {
		super(context, attrs);
	}
}