1

我正在使用具有 10 个 editext 字段的布局充气机对布局进行充气,当我单击 edittext 软键盘时,如果我不充气布局并放置在 setcontentview 中,它会隐藏edittext,它工作正常。如果一个 put requestfocus 标签膨胀布局会使应用程序崩溃。请找到以下代码并帮助我解决此问题。

JAVA代码

LayoutInflater inflater = LayoutInflater.from(this);
scrollView = (MyHorizontalScrollView) 
inflater.inflate(R.layout.horz_scroll_with_list_menu, null);
setContentView(scrollView);// if i comment this and add inflatelayout SetContentView(R.layout_details) works fine.

menu = inflater.inflate(R.layout.horz_scroll_menu, null);
app = inflater.inflate(R.layout.details, null);//
4

1 回答 1

0

您可能需要更改清单(针对您的活动)中的属性来处理此问题。将此行放在您的 AndroidManifest.xml 中(在您用于定义 Activity 的标签内)

android:windowSoftInputMode="adjustResize"
于 2013-01-16T18:21:04.673 回答