2017-09-27 2 views
1

私はAndroid Soft Keyboardで作業しており、キーのカスタムテーマを適用しています。レイアウトを拡張しているときのjava.lang.ClassCastException

@Override 
public View onCreateInputView() { 

    // Set custom theme to input view. 
    int themeLayout = sharedPreferences.getInt(THEME_KEY, R.layout.input_1); 
    mInputView = (LatinKeyboardView) getLayoutInflater().inflate(
      themeLayout, null); 
    mInputView.setOnKeyboardActionListener(this); 

    // Apply the selected keyboard to the input view. 
    setLatinKeyboard(getSelectedSubtype()); 

    return mInputView; 
} 

しかし、私は次のエラーを取得しています:

私は、次のコードでこれをやっている

java.lang.ClassCastException: at com.xxx.xxx.android.SoftKeyboard.onCreateInputView (SoftKeyboard.java:159) at com.xxx.xxx.android.SoftKeyboard.onStartInput (SoftKeyboard.java:232) at android.inputmethodservice.InputMethodService.doStartInput (InputMethodService.java:2641) at android.inputmethodservice.InputMethodService$InputMethodImpl.startInput (InputMethodService.java:590) at android.inputmethodservice.IInputMethodWrapper.executeMessage (IInputMethodWrapper.java:186) at com.android.internal.os.HandlerCaller$MyHandler.handleMessage (HandlerCaller.java:37) at android.os.Handler.dispatchMessage (Handler.java:102) at android.os.Looper.loop (Looper.java:154) at android.app.ActivityThread.main (ActivityThread.java:6682) at java.lang.reflect.Method.invoke (Native Method) at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run (ZygoteInit.java:1520) at com.android.internal.os.ZygoteInit.main (ZygoteInit.java:1410)

レイアウト:

<com.sunzala.xxxx.android.LatinKeyboardView xmlns:android="http://schemas.android.com/apk/res/android" 
    android:id="@+id/keyboard" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:layout_alignParentBottom="true" 
    android:background="@drawable/kb_bg_1" 
    android:keyBackground="@drawable/key_bg_fill_grey" 
    android:keyPreviewLayout="@layout/key_preview_layout" 
    android:keyPreviewOffset="@dimen/keyPreviewOffset" 
    android:keyTextColor="@color/white" 
    android:popupLayout="@layout/keyboard_popup_layout" /> 

これは、私がテストしていたときに動作します私のデバイスは、アプリケーションを公開した後にクラッシュログにエラーが発生しました。

答えて

1

おそらく、proguardがカスタム表示を縮小しました。 build.gradleファイルのreleaseブロックでminifyEnabledをfalseに設定することで、proguardを無効にすることができます。

proguardを使用する場合は、カスタムビューを保持するためにproguard-rules.proに次の行を追加します。

-keep public class * extends android.view.View { 
    public <init> (android.content.Context); 
    public <init> (android.content.Context , android.util.AttributeSet); 
    public <init> (android.content.Context , android.util.AttributeSet , int); 
    public void set *(...); 
} 
+0

縮小されたproguardは、gradleでは有効になっていません。 –

関連する問題