我正在测试一项功能,以便在Android Studio的更大项目中使用它。
我需要代码来捕获用户输入的文本长度,并使用For循环打印该文本的次数等于输入文本的长度。例如,如果用户写了 car ,我需要代码打印 car 3次(与文本的长度相同)。
以下代码目前只打印一次文本。
感谢您的支持 您可以在下面找到我的.java和.xml代码
的.java:
package com.app.lenovo.firstapp;
import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.widget.TextView;
public class DisplayMessageActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_display_message);
// Get the Intent that started this activity and extract the string
Intent intent = getIntent();
String message = intent.getStringExtra(MainActivity.EXTRA_MESSAGE);
// Capture the layout's TextView and set the string as its text
TextView MyText = findViewById(R.id.textView);
for (int i = message.length(); i > 0; i--) {
MyText.setText(message + "\n");
}
}
}
.XML:
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.app.lenovo.firstapp.DisplayMessageActivity">
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:text="TextView"
android:textAlignment="center"
android:textColor="@android:color/background_dark"
android:textCursorDrawable="@android:drawable/btn_minus"
android:textSize="36sp"
android:textStyle="bold|italic"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</android.support.constraint.ConstraintLayout>
答案 0 :(得分:2)
当您在for中拨打MyText.setText(message + "\n");
时,会删除之前的文字。你必须改为追加它。
如果您像这样使用它会起作用:
String text = "";
for (int i = message.length(); i > 0; i--) {
text += (message + "\n");
}
MyText.setText(text);
答案 1 :(得分:0)
您可以按照用户输入的文本长度打印消息,每次在每次覆盖时都附加文本。