我在LinearLayout中创建了一个按钮,现在我想问一下如何在每次单击按钮时自动添加一个新的Textview。
这是我的Java onclicklistener:
btn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
}
});
这是xml文件:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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=".MainActivity">
<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_weight="1"
android:text="+" />
</LinearLayout>
非常感谢您。
在您的按钮onClickListener上,您需要创建新的textview,然后将其添加到LinearLayout中。查看以下StackOverflow:response。链接的线程显示类似的问题。请注意,如果您想拥有很多这些TextView,则应考虑使用RecyclerView。