您现在的位置: 爱51代码网 >> 范文 >> 文章正文
android如何动态设置edittext高度

布局没啥特别的
<EditText android:id="@+id/embedded_text_editor"
                    android:layout_width="fill_parent"
                    android:layout_height="fill_parent"
                    android:layout_weight="1.0"
                    android:autoText="true"
                    android:capitalize="sentences"
                    android:hint="@string/type_to_compose_text_enter_to_send"
                    android:textCursorDrawable="@null"
     android:textColor="@android:color/black"
                    android:maxLines="4"
                    android:nextFocusRight="@+id/send_button"
                    android:gravity="top" />

int newHeight = 200;         //注意这里,到底是用ViewGroup还是用LinearLayout或者是FrameLayout,主要是看你这个EditTex         //控件所在的父控件是啥布局,如果是LinearLayout,那么这里就要改成LinearLayout.LayoutParams         ViewGroup.LayoutParams lp = editText.getLayoutParams();         lp.height = newHeight;         editText.setLayoutParams(lp);

  • 上一篇文章:

  • 下一篇文章: 没有了
  • 最新文章 热点文章 相关文章
    GIS用百度行政区域的经纬度直接画
    不小心卸载了.net 4 extend,vs2
    C#byte【】里的数转换成string时
    C#的session取不到值
    java如何判断一个字符串里的数字
    随机找出24个不一样的字,在把一
    java怎么实现html转为pdf
    lotus数据列表文档个数如何实时统
    lotus代理中LS如何将字符串保存到
    在lotus BS系统里怎样方便实现统
    GIS用百度行政区域的经纬度直接画
    不小心卸载了.net 4 extend,vs2
    C#byte【】里的数转换成string时
    C#的session取不到值
    java如何判断一个字符串里的数字
    java怎么实现html转为pdf
    lotus数据列表文档个数如何实时统
    在lotus BS系统里怎样方便实现统
    undefined reference timer_crea
    linux文件/usr/lib破坏了,还原后
    brut.common.BrutException:
    android怎样才能让在ViewPag
    android怎么保存图片在相册目
    progurad之后程序无法运行闪
    android的apk下载到手机内存
    android的LongListSelector如
    json在客户端和服务器端传中
    如何在代码中动态改变radioB
    用什么工具开发android游戏最
    Release模式下如何打开指定驱
     



    设为首页 | 加入收藏 | 网站地图 | 友情链接 |