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.
我正在使用 Robotium 测试框架测试 APK。我想在 textview 中添加一些文本,使 abcd 在第一行,efgh 在第二行。我尝试了以下代码,但它似乎不起作用。
如何使用 Robotium 框架在 Textview 中添加换行符。
public void test_Test1() { fob308 = "abcd"+ "\n" +"efgh"; solo.enterText(0, fob308); }
你有android:singleLine="false"布局吗?
android:singleLine="false"
System.getProperty("line.separator")而不是呢\n?
System.getProperty("line.separator")
\n