android-表格行中编辑框的问题

问题描述

表格行中编辑框的问题
在表格行中有一个文本框和一个编辑框,问题是当我在编辑框中输入字符时,编辑框中不显示我输入的内容,好像是编辑框宽度的问题。那么如何实现在输入字符时编辑框可以多行显示内容或者出现滚动条呢?
代码是这样的:

<TableLayout    android:id=""@+id/table""    android:layout_height=""wrap_content""     android:layout_width=""fill_parent""    android:paddingTop=""30dip""    android:paddingLeft=""10dip""    android:paddingRight=""10dip""    android:layout_below=""@id/banner"" >    <TableRow>        <TextView            android:id=""@+id/username_label""            android:layout_width=""wrap_content""            android:layout_height=""wrap_content""            android:textColor=""#fff""            android:textSize=""18dip""             android:text=""Username""             />        <EditText            android:id=""@+id/entry1""            android:layout_width=""fill_parent""            android:layout_height=""wrap_content"" />    </TableRow>    <TableRow>        <TextView            android:id=""@+id/password_label""            android:layout_width=""fill_parent""            android:layout_height=""wrap_content""            android:textColor=""#fff""            android:textSize=""18dip""             android:text=""Password"" />        <EditText            android:id=""@+id/entry2""            android:layout_width=""fill_parent""            android:layout_height=""wrap_content""            android:password=""true"" />    </TableRow>     </TableLayout>

解决方案

希望这个方法能帮上你:

<TableLayout android:id=""@+id/table"" android:layout_width=""fill_parent""    android:layout_height=""fill_parent"" android:stretchColumns=""1""    android:layout_below=""@+id/banner"">    <TableRow>        <TextView android:id=""@+id/username_label""            android:layout_width=""wrap_content""     android:layout_height=""wrap_content""            android:textColor=""#fff"" android:textSize=""18dip"" android:text=""Username"" />        <EditText android:id=""@+id/entry1"" android:layout_width=""fill_parent""            android:layout_height=""wrap_content"" />    </TableRow>    <TableRow>        <TextView android:id=""@+id/password_label""            android:layout_width=""fill_parent"" android:layout_height=""wrap_content""            android:textColor=""#fff"" android:textSize=""18dip"" android:text=""Password"" />        <EditText android:id=""@+id/entry2"" android:layout_width=""fill_parent""            android:layout_height=""wrap_content"" android:password=""true"" />    </TableRow></TableLayout>

解决方案二:
加这句代码试试:

android:lines/android:maxLines?
时间: 2024-11-01 03:56:36

android-表格行中编辑框的问题的相关文章

mfc求助-MFC中编辑框关联的变量使用updatedate(fasle)

问题描述 MFC中编辑框关联的变量使用updatedate(fasle) MFC中编辑框关联的变量使用updatedate(fasle) 怎么不好改变编辑框中的显示的值 而是需要点编辑框才会改变(编辑框没设响应函数) 解决方案 是false还是true我忘了,但是肯定会改变的,如果没改变,说明你的消息映射或其他什么的没有弄对. 解决方案二: updatedate(fasle)之后,编辑框调用invalidate()试下 解决方案三: 是要用updatedate(TRUE)来对控件跟控件关联的变量

CDialogBar中编辑框控件Ctrl+c,Ctrl+V不可用的解决办法

CDialogBar中编辑框控件(Edit Control)中进行用Ctrl+C.Ctrl+V进行拷贝,粘贴操作会不可用.其解决办法有二. 其一:资源的Accelerator里的子项删除ID_EDIT_PASTE和ID_EDIT_COPY项就可以了,一般在IDR_MAINFRAME里. 其二:重载PreTranslateMessage方法,其代码如下: BOOL CToolBarDlg::PreTranslateMessage(MSG* pMsg){    if (pMsg->message >

asp 操作表格行-ASP 如何获取在运行时由用户添加的表格行中单元格控件中的值?

问题描述 ASP 如何获取在运行时由用户添加的表格行中单元格控件中的值? 如图中,用户点击添加或移除按钮后,即可增加或删除一行.增加的新行就是当前最后一行的克隆行.(这部分代码JS都已实现).而"提交申请"就是将当前表格中的所有内容提交保存到数据库.**而我要问的是,由JS克隆新增加的行中各个单元格里控件的值如何获取提交?** 附:表格增加行或删除行的JS代码如下: function addRow() { var oTr = document.getElementById("

vc++6.0如何实现基于对话框模态对话框中编辑框的内容显示在主对话框静态文本中?

问题描述 vc++6.0如何实现基于对话框模态对话框中编辑框的内容显示在主对话框静态文本中? vc++6.0基于对话框如何实现在模态对话框中输入一个数,然后点击确定按钮将编辑框中的数值显示在主对话框的静态文本中.(注:静态文本的默认值为10)求具体步骤和代码! 解决方案 模式对话框 class CSubDlg : public CDialogEx { ... public: int num; //定义一个成员变量 }; //对话框初始化函数 BOOL CSubDlg::OnInitDialog(

Android学习笔记(18):编辑框EditText

编辑框EditText,继承自TextView,TextView绝大部分方法适用,其用途是接受用户的输入. 通过inputType属性可以指定输入的类型,可接受的参数有许多种: android:inputType="none"--输入普通字符 android:inputType="text"--输入普通字符 android:inputType="textCapCharacters"--输入普通字符 android:inputType="

颜色-基于MFC对话框的编辑框中如何画网格

问题描述 基于MFC对话框的编辑框中如何画网格 就是我想在对话框中编辑框里画网格怎么画,然后想让网格奔不同深度的颜色 解决方案 listctrl控件,然后子类化. 解决方案二: 重写编辑框的WM-PAINT消息 解决方案三: 你看看这个:http://blog.csdn.net/hurryboylqs/article/details/5862046 解决方案四: 子类化CEdit,添加处理WM_PAINT消息.

c++-怎么把模态对话框中的编辑框的值传出来?

问题描述 怎么把模态对话框中的编辑框的值传出来? void CMFC_1View::OnDraw(CDC* pDC) { CMFC_1Doc* pDoc = GetDocument(); ASSERT_VALID(pDoc); if (!pDoc) return; POINT point1; CPen pen(PS_SOLID, 7, RGB(255, 0, 0)); CPen oldPen; oldPen == pDC->SelectObject(&pen); pDC->MoveTo

android-表格行中的 Relative layout 布局

问题描述 表格行中的 Relative layout 布局 我在表格行中设置了相对布局,当运行下面的代码时出现 Logcat:错误,如何处理这个问题? <TableLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="wrap_content" android:layout_height="wrap_content" a

android开发-安卓编辑框中插入录音后的文件

问题描述 安卓编辑框中插入录音后的文件 在安卓上开发一个笔记,可以支持文本和录音功能,想在编辑框中既能写文字,又能插入录音,查看时可点击播放,怎么实现