我在edittext中遇到一个奇怪的问题。我在linearlayout中有一个edittext,它可以有多行文本。当我输入足够的文本而不能使编辑文本滚动时,当键盘出现时它会完美地上升,但是当我输入更多文本时,例如使编辑文本可滚动的10行,每当我点击它时它都隐藏在键盘后面。我也使用了adjustpan,但没有运气。
buildscript {
repositories {
mavenCentral() //Add following
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.2.3'
}
}
allprojects {
repositories {
mavenCentral() // Add following
jcenter()
}
}
清单就像
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0sp"
android:layout_marginTop="2sp"
android:layout_weight="20"
android:background="@color/White"
android:orientation="horizontal"
android:weightSum="100" >
<EditText
android:layout_width="0sp"
android:layout_height="match_parent"
android:layout_marginBottom="3sp"
android:layout_marginLeft="10sp"
android:layout_marginRight="10sp"
android:layout_marginTop="3sp"
android:layout_weight="100"
android:gravity="left|top"
android:hint="Details"
android:scrollbars="vertical"
android:paddingLeft="10sp"
android:paddingRight="10sp"
android:textColor="@color/Black"
android:textSize="16sp" />
</LinearLayout>
这个带有edittext的linearlayout在另一个带有weight-sum的linearlayout中。