blob: d1ed61330a382bf48c5919944cf343f0f041a391 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
package juloo.keyboard2;
import android.inputmethodservice.InputMethodService;
import android.util.Log;
import android.view.View;
public class Keyboard2 extends InputMethodService
{
public static final String TAG = "Keyboard_2.0";
private Keyboard2View _inputView;
@Override
public View onCreateInputView()
{
_inputView = (Keyboard2View)getLayoutInflater().inflate(R.layout.input, null);
_inputView.loadKeyboard(R.xml.azerty);
return (_inputView);
}
public static void log(String str)
{
Log.d(TAG, str);
}
}
|