English 中文(简体)
编辑文本上的键盘重叠,当我动态添加视图时
原标题:Keyboard overlaps on EditText, when I m dynamically add view
  • 时间:2012-05-24 21:45:00
  •  标签:
  • android

我动态地将视图( relativeLayout with EditText )添加到 FrameLayout ,并使用 set Translate 方法设定位置。但在屏幕键盘上,我的 EditText 重叠。

我试过设置

android:windowSoftInputMode="stateHidden|adjustResize|adjustPan"

我用了11SDK(SDK)

如何解决这个问题?

以下是弹弓:

enter image description here enter image description here

最佳回答

正如您已经尝试过的活动和机器人 : WindowSoftputPutMode 在您的宣言中。 您可以通过将版式切换到相对, 使您的编辑文本“ 强度” 和“ 机器人 :layout_ align PatrentBottom = “ true”

参考此 < a href=" "https://stackoverflow.com/a/5401828/598170" >example

问题回答

您的相对布局周围有

将视图放入此处。 滚动视图只接受一个孩子, 所以您可能需要将全部组件添加到 LinearLayout 中, 然后在滚动视图中添加 LinearLayout 。

<ScrollView
android:layout_width="fill_parent"
android:layout_height="fill_parent">  


</ScrollView>

如果这不是你想找的,那么添加

android:layout_alignParentBottom="true"

我唯一能起作用的就是在特定活动标记中的列表文件中添加更新内容,该标记是碎片的所在地,其布局正在滚动中制造问题。

android:windowSoftInputMode="stateVisible|adjustPan"




相关问题
Android - ListView fling gesture triggers context menu

I m relatively new to Android development. I m developing an app with a ListView. I ve followed the info in #1338475 and have my app recognizing the fling gesture, but after the gesture is complete, ...

AsyncTask and error handling on Android

I m converting my code from using Handler to AsyncTask. The latter is great at what it does - asynchronous updates and handling of results in the main UI thread. What s unclear to me is how to handle ...

Android intent filter for a particular file extension?

I want to be able to download a file with a particular extension from the net, and have it passed to my application to deal with it, but I haven t been able to figure out the intent filter. The ...

Android & Web: What is the equivalent style for the web?

I am quite impressed by the workflow I follow when developing Android applications: Define a layout in an xml file and then write all the code in a code-behind style. Is there an equivalent style for ...

TiledLayer equivalent in Android [duplicate]

To draw landscapes, backgrounds with patterns etc, we used TiledLayer in J2ME. Is there an android counterpart for that. Does android provide an option to set such tiled patterns in the layout XML?

Using Repo with Msysgit

When following the Android Open Source Project instructions on installing repo for use with Git, after running the repo init command, I run into this error: /c/Users/Andrew Rabon/bin/repo: line ...

Android "single top" launch mode and onNewIntent method

I read in the Android documentation that by setting my Activity s launchMode property to singleTop OR by adding the FLAG_ACTIVITY_SINGLE_TOP flag to my Intent, that calling startActivity(intent) would ...

From Web Development to Android Development

I have pretty good skills in PHP , Mysql and Javascript for a junior developer. If I wanted to try my hand as Android Development do you think I might find it tough ? Also what new languages would I ...

热门标签