android–EditText以编程方式添加了XML版本的差异

android–EditText以编程方式添加了XML版本的差异,第1张

概述我有一个包含EditText和2个按钮的XML布局.如果我单击加号按钮,则以编程方式添加新的edittext.这有效,但edittext看起来不同.根据XML,XML中定义的edittext没有任何特殊属性,所以我认为它不是特定的布局设置.我的问题是如何让我以编程方式添加EditText的外观相同?包含数字的EditText

我有一个包含EditText和2个按钮的XML布局.如果我单击加号按钮,则以编程方式添加新的edittext.这有效,但edittext看起来不同.根据XML,XML中定义的edittext没有任何特殊属性,所以我认为它不是特定的布局设置.

我的问题是如何让我以编程方式添加EditText的外观相同?

包含数字的EditText是我以编程方式添加的edittext.空的是在XML中创建的.

screenshot http://www.tozz.nl/temp/screenshot.png

码:

        linearLayout baseLayout = (linearLayout) findVIEwByID(R.ID.baseLayout);        linearLayout linearLayout = new linearLayout(getApplicationContext());        linearLayout.setID(100 + numPlayers);        linearLayout.setorIEntation(linearLayout.HORIZONTAL);        EditText editText = new EditText(getApplicationContext());        editText.setText(editText.toString().substring(25, 30));        Imagebutton delbutton = new Imagebutton(getApplicationContext());        delbutton.setimageResource(R.drawable.ic_delete);        linearLayout.addVIEw(editText);        linearLayout.addVIEw(delbutton);        baseLayout.addVIEw(linearLayout);

我的XML如下:

    <linearLayout        androID:ID="@+ID/linearPlayer1"        androID:layout_wIDth="fill_parent"        androID:layout_height="wrap_content"        androID:orIEntation="horizontal" >        <EditText            androID:ID="@+ID/editPlayer1"            androID:layout_wIDth="0dip"            androID:layout_height="wrap_content"            androID:layout_gravity="center"            androID:layout_weight="1"            androID:gravity="center_vertical" />        <Imagebutton            androID:ID="@+ID/addplayer1"            androID:layout_wIDth="wrap_content"            androID:layout_height="wrap_content"            androID:src="@drawable/ic_input_add" />    </linearLayout>

解决方法:

Luksprog回答了我的问题:

pass the Activity Context and not the Application Context when creating the new vIEws.

总结

以上是内存溢出为你收集整理的android – EditText以编程方式添加了XML版本的差异全部内容,希望文章能够帮你解决android – EditText以编程方式添加了XML版本的差异所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1114412.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-29
下一篇 2022-05-29

发表评论

登录后才能评论

评论列表(0条)

保存