gpt4 book ai didi

Android:以编程方式创建 TextView

转载 作者:行者123 更新时间:2023-11-29 14:25:32 24 4
gpt4 key购买 nike

如何使用 layout_width=fill_parent 创建一个 TextView(使用 Java 代码,而不是 xml)?

TextView 应该是可编辑的。

最佳答案

如果我没有理解错误的问题,您需要以编程方式创建一个EditText。然后,尝试使用:

EditText et=new EditText(context);
et.setLayoutParams(new Gallery.LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT));

编辑:

为 LayoutParams 导入:

import android.view.ViewGroup.LayoutParams;

关于Android:以编程方式创建 TextView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7976990/

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