Hallo!
Ich habe in meine App via Firebase Authentication einen LogIn-Bereich eingefügt (Facebook, Telefonnummer, Google, Email). Wenn man sich über E-Mail einloggen möchte, sieht man bei der Passworteingabe dort, wo der Button "Anmelden" steht, nur einen leeren Rahmen ohne Schrift (siehe Foto). Kann mir jemand sagen, wie ich diesen Schriftzug sichtbar machen kann?
Anbei der Inhalt meiner styles.xml und vom Manifest, falls das wichtig sein sollte.
Styles:
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
<style name="MyTheme" parent="AppTheme">
<item name="android:windowBackground">@android:color/white</item>
</style>
</resources>manifest:<?xml version="1.0" encoding="utf-8"?><manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="...">
<uses-permission android:name="android.permission.INTERNET"/>
<supports-screens
android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:xlargeScreens="true"/>
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".AboutUs"></activity>
<activity android:name=".Themen" />
<activity android:name=".Abfrage" />
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>