SoftKeyboard不调整我的屏幕,尝试windowSoftinputmode adjustPan& adjustResize

时间:2012-06-19 06:11:00

标签: android scrollview android-softkeyboard

正如标题所说的那样,但是当我尝试将我的布局放在ScrollView中时,它可以正常工作,但问题是我有一个Tablelayout也有ScrollView,这意味着在垂直ScrollView中进行垂直滚动。

通过将我的父LinearLayout放在Scrollview中,我的TableLayout's ScrollView无效。

我该如何解决呢?

<ScrollView>// Added to adjust my screen on softKeyboard
   <LinearLayout>

      <TableLayout>
      </TableLayout>

      <Scrolliew> // Is not working because of Parent ScrollView

          <TableLayout>
          </TableLayout>

      </ScrollView>

   </LinearLayout>

</ScrollView>  

感谢任何帮助。

1 个答案:

答案 0 :(得分:1)

您不能将两个ScrollView放在父级和子级的位置。 android如何知道哪个滚动视图是被触摸的?