Android Studio TextInputEditText in PopupWindow doesn't open keyboard?

I created a TextInputLayout in Android Studio using Java and placed it in an "edit" popup window, but the keyboard never opened, although the TextInputEditText gets focus. If I place one in a non-popup window using the exact same code, the keyboard opens. Can someone help me? thanks in advance

Java: Cast to Hashmap Exception?

public class RoomViewAdapter extends ArrayAdapter<Room> { private ArrayList<Room> rooms; private Context context; private int resource; public RoomViewAdapter(Context context, int resource, ArrayList<Room> rooms){ super(context, resource, rooms); this.rooms = rooms; this.context = context; this.resource = resource; } @NonNull @Override public View getView(int position, @Nullable View convertView, @NonNull ViewGroup parent) { System.out.println(rooms.get(position)); Room room = getItem(position); String name…

How much would it cost to program something like that?

Hello, I need an app for my company. How much would it cost? Attached is the app's structure: The app must be connected to WordPress via an API. When the user receives a call, a popup appears, giving them the option to forward the call or answer it themselves. Once the secretary processes the forwarded…

Android Studio: DarkMode at which lux value?

Hey guys, I'm currently developing a car app for various things like OBD2 trip tracker, parking tracker, navigation etc. One feature that is particularly important to me when driving is the ability to switch between DarkMode and LightMode while using the app, depending on the ambient brightness. I can read this sensor and get a…