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.
android中formatter类的format方法,在EditText中没有正确显示表格形式的格式化字符串,而在eclipse控制台中显示完美(所有列对齐)。两种情况下的字符串格式相同。可能是什么原因以及正确显示它的方法。
不要在格式字符串中使用制表符或空格来对齐文本。Eclipse 控制台使用等宽字体,文本可以很好地对齐(因为每个字符都具有相同的宽度),但您的设备可能使用的是比例字体,其中并非所有字符都具有相同的宽度。
使用更复杂的布局(如 TableLayout)来定位 UI 元素。