1

com.android.internal.widget から MultiWaveView という名前のウィジェットを実装しようとしています。

このクラスの私の問題

class StateListState extends DrawableContainerState
{
    int[][] mStateSets;
    // Heare error (The constructor DrawableContainer.DrawableContainerState(StateListDrawable.StateListState, StateListDrawable, Resources) is undefined)
    StateListState(StateListState orig, StateListDrawable owner, Resources res)
    {
        super(orig, owner, res );

        if (orig != null) {
            mStateSets = orig.mStateSets;
        } else {
            mStateSets = new int[getChildren().length][];
        }
    }
}
4

0 に答える 0