[Android] TextView is not centered horizontally when folded
Phenomenon
I put a TextView inside the LinearLayout and set the gravity of the LinearLayout to center_horizontal. When the TextView has one line, it is properly centered on the left and right, but when the sentence becomes long and becomes two lines, it is biased to the left.
Solution
Set the gravity of the TextView to center_horizontal. If the statement is long and has two lines, the TextView has an end-to-end length of the LinearLayout (even if you can't see it). Therefore, as mentioned above, the gravity of the TextView must be center_horizontal in order to bring the sentence to the center of the left and right.
Recent Posts
See AllIntroduction When I try to upload an app to Google Play Store, the following error occurs Your app is currently targeting API level 31....
Phenomenon When I try to read the data in the database and display it in RecyclerView, nothing is displayed. When I set a breakpoint and...
Phenomenon I want to read data from the database and display it in a list with RecyclerView. There should be more than one registered in...
Comments