This may seem like a duplicate but I can't find an answer anywhere.
It seems everyone has "TextView" available to edit in their activity xml file, whereas I only have the following:
<ListView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/liv1"
android:layout_below="@+id/lt1"
android:layout_marginTop="29dp"
android:layout_alignRight="@+id/lt1"
android:layout_alignEnd="@+id/lt1"
android:layout_alignLeft="@+id/lt1"
android:layout_alignStart="@+id/lt1"
/>
Using android:gravity = center
does nothing when I put it in between the "ListView" brackets.
So what is it I should do?