Привет, я хочу добавить текст на заставке на заставке. Я добавил один текст на изображение, но я хочу изменять текст каждый раз, когда приложение открывается. Как это сделать, скажите, пожалуйста.
Я добавил один текстовый вид в splash.xml, который он отображает. Но я хочу отображать все элементы в list.xml по одному при каждом открытии приложения.
<TextView
android:id="@+id/quote"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Your limitation—it's only your imagination."
android:textColor="#ffffff"
android:textSize="36sp"
android:layout_centerInParent="true"/>
в list.xml
<string-array name="quote_array">
<item>Your limitation—it's only your imagination.</item>
<item>Great things never come from comfort zones.</item>
<item>The harder you work for something, the greater you’ll feel when you achieve it.</item>
</string-array>