gpt4 book ai didi

Android - 按下按钮时将 TextView 添加到布局

转载 作者:IT老高 更新时间:2023-10-28 23:40:07 30 4
gpt4 key购买 nike

所以现在我有一个文本字段,下面有一个按钮(添加+)。

我希望每次在文本字段中输入文本并按下“添加”按钮时,都会在其下方的垂直布局中添加一个新的 TextView ,其中包含用户在字段中键入的文本。

我不想简单地使 TextView 不可见,然后在单击时可见,因为我希望他们能够添加多个 TextView ,无论他们键入什么文本。

最佳答案

此代码包含您想要的内容。 ( View 显示一个 EditText 和一个 Button,单击按钮后文本将添加到 LinearLayout)

    private LinearLayout mLayout;
private EditText mEditText;
private Button mButton;

@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
mLayout = (LinearLayout) findViewById(R.id.linearLayout);
mEditText = (EditText) findViewById(R.id.editText);
mButton = (Button) findViewById(R.id.button);
mButton.setOnClickListener(onClick());
TextView textView = new TextView(this);
textView.setText("New text");
}

private OnClickListener onClick() {
return new OnClickListener() {

@Override
public void onClick(View v) {
mLayout.addView(createNewTextView(mEditText.getText().toString()));
}
};
}

private TextView createNewTextView(String text) {
final LayoutParams lparams = new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
final TextView textView = new TextView(this);
textView.setLayoutParams(lparams);
textView.setText("New text: " + text);
return textView;
}

xml 是:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/linearLayout">
<EditText
android:id="@+id/editText"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Add+"
/>

关于Android - 按下按钮时将 TextView 添加到布局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6930604/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com