0

在我的应用程序中,我在可扩展列表视图中使用编辑文本视图。当我尝试在编辑文本中添加文本时,editext 的焦点会自动更改。我无法正确地将文本放入编辑文本中。我应该怎么办?

编辑文本 xml-

    <EditText 
    android:id="@+id/editDetails"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:singleLine="false"
    android:lines="3"      
    android:focusable="true" 
    android:focusableInTouchMode="true" />
4

2 回答 2

0

答案-通过在活动标签中添加以下行,这现在对我有用-

     android:windowSoftInputMode="adjustPan"
于 2013-09-19T07:23:19.390 回答
0

在 Xml 中也可以在您的 EditText 中尝试此操作

android:inputType="textPersonName|textCapWords
于 2013-09-19T07:50:08.327 回答