在提出这个问题之前:@Nagekeeran Piraba&我在同一家公司工作。我代表她问了这个问题。我不熟悉Android&本网站也
我在TableLayout中有包含EditText的产品列表。用户单击EditText后,将显示Key borad:
http://hotfile.com/dl/130483171/c278c87/key1.png.html
图片:1
几秒钟后,此屏幕将如下变化: http://hotfile.com/dl/130483238/123302a/key2.png.html
图片2
这是在Emulator上运行。当我在真实设备上运行时。它隐藏滚动视图,我看不到我的tableLayout的产品。
我需要键盘如图:1。不要像2张图片
这是我的代码:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/wallpaper">
<LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:id="@+id/linearLayout1" android:orientation="vertical">
<TableLayout android:layout_width="wrap_content"
android:layout_height="wrap_content" android:id="@+id/orderTopLayer"
android:layout_alignParentTop="true" android:layout_alignParentLeft="true">
..................
</TableLayout>
<TableLayout android:layout_width="wrap_content"
android:layout_height="wrap_content" android:id="@+id/orderPriceLayer"
android:layout_alignParentTop="true" android:layout_alignParentLeft="true">
............
</TableLayout>
</LinearLayout>
<!-- Product List part -->
<ScrollView android:layout_width="fill_parent" android:scrollbarStyle="outsideInset" android:scrollbarThumbVertical="@drawable/scrollbar_vertical_thumb" android:scrollbarTrackVertical="@drawable/scrollbar_vertical_track" android:scrollbarSize="5dp" android:scrollbarFadeDuration="0" android:fillViewport="true" android:layout_height="wrap_content" android:id="@+id/scrollView1" android:layout_weight="1" android:scrollbars="vertical">
<LinearLayout android:id="@+id/linearLayout2" android:layout_width="fill_parent" android:layout_height="396dp">
<HorizontalScrollView android:id="@+id/horizontalScrollView1" android:layout_width="fill_parent" android:layout_height="wrap_content" >
<LinearLayout android:id="@+id/linearLayout3" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="horizontal">
<TableLayout android:stretchColumns="*" android:layout_width="fill_parent" android:layout_margin="2pt" android:layout_marginTop="0dp" android:id="@+id/tableLayout1" android:layout_height="fill_parent">
</TableLayout>
</LinearLayout>
</HorizontalScrollView>
</LinearLayout>
</ScrollView>
<LinearLayout android:id="@+id/header"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:layout_marginBottom="1dp">
....................
</LinearLayout>
<RelativeLayout android:id="@+id/pageHeader"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:layout_marginBottom="25dp">
........................
</RelativeLayout>
<!-- Footer -->
<LinearLayout android:id="@+id/header"
android:background="#000000"
android:layout_height="wrap_content"
android:layout_width="fill_parent">
......
</LinearLayout>
</LinearLayout>
在模拟器中至少显示所选行。但在Real设备中它没有显示任何EditText或Table行。它隐藏在键盘上。
我不知道这是问问题的方式。如果有错,请原谅我。我们是严肃的问题。这就是我代表她提出这个问题的原因。
请告诉我任何解决方案。
我在这里看过文章/问题。 Soft Keyboard Overlapping with EditText Field When the soft keyboard appears, it makes my EditText field lose focus
请帮帮我
我很抱歉我无法在此处上传图片。我没有获得许可
感谢。