Android Style sorunu
Merhaba, arkadaşlar style dosyası ile ilgili bir sorum var. Uygulamada basit bir listview kullanıyorum. Normal adapter kullanıyorum, custom adapter değil.
[code]ArrayAdapter<String> adapter = new ArrayAdapter<>(getApplicationContext(), android.R.layout.simple_list_item_2, android.R.id.text1, duyurular);[/code]
Style dosyasını ise aşağıdaki şekilde iken, liste siyah ama yazılar beyaz burda sıkıntı yok.
[code]
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="ThemeOverlay.AppCompat.Dark">
<!-- Customize your theme here. -->
</style>
</resources>
[/code]
Aşağıdaki şekilde ise listede beyaz yazılarda beyaz bu şekilde yazılar gözükmüyor.
[code]
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="ThemeOverlay.AppCompat.Light">
<!-- Customize your theme here. -->
</style>
</resources>
[/code]