我想要一个多行文字视图并为其添加文字,
在TextView中添加五行后,我想开始添加到文本视图的开头。
例如:(作为文本的数字),1,2,3,4,5 - > 6,2,3,4,5 - > 6,7,3,4,5等等。
我考虑过使用StringBuilder,但我没有看到实现它的有效方法。
每行的分隔符是“\ n \ n”,这可能有助于解决问题。
或者我应该只做5个textView并在它们之间有一些切换案例?
按钮xml:
<TextView
android:id="@+id/searchesInputTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:scrollHorizontally="false"
android:width="300dp"
android:height="200dp"
android:background="@drawable/border_style"
android:maxLines="5"
android:layout_marginTop="24dp"
/>
MainActivity.java中的:
public class MainActivity extends AppCompatActivity {
private TextView searchesTextView;
private ImageButton refreshCurrentLocationButton;
private String myText = "";
refreshCurrentLocationButton = (ImageButton) findViewById(R.id.currentLocationRefreshImageButton);
searchesTextView = (TextView) findViewById(R.id.searchesInputTextView);
refreshCurrentLocationButton.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
// Actual code
myText += location.ToString() + "\n\n";
searchesTextView.setText(myText);
});
}