- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
30 lines
935 B
Java
30 lines
935 B
Java
package androidx.appcompat.widget;
|
|
|
|
import android.view.View;
|
|
import android.view.ViewParent;
|
|
import android.view.inputmethod.EditorInfo;
|
|
import android.view.inputmethod.InputConnection;
|
|
|
|
/* loaded from: classes.dex */
|
|
class AppCompatHintHelper {
|
|
public static InputConnection onCreateInputConnection(InputConnection inputConnection, EditorInfo editorInfo, View view) {
|
|
if (inputConnection != null && editorInfo.hintText == null) {
|
|
ViewParent parent = view.getParent();
|
|
while (true) {
|
|
if (!(parent instanceof View)) {
|
|
break;
|
|
}
|
|
if (parent instanceof WithHint) {
|
|
editorInfo.hintText = ((WithHint) parent).getHint();
|
|
break;
|
|
}
|
|
parent = parent.getParent();
|
|
}
|
|
}
|
|
return inputConnection;
|
|
}
|
|
|
|
private AppCompatHintHelper() {
|
|
}
|
|
}
|