Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我开发了一个计算分数的应用程序。当文本附加到 TextView 时,它会从其原始位置略微移动。
我怎样才能阻止它移动并让它垂直向下生长?
你可以尝试改变这个
android:gravity="center"
至
android:gravity="top"
在你的文本视图中。
刚刚想通了。
我在我的 java 代码中通过“\n”添加了不必要的行。