我有EditText
:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<EditText
android:id="@+id/text_editor"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="start|top"
android:inputType="textLongMessage|textCapSentences|textMultiLine"
android:textAlignment="gravity" />
</RelativeLayout>
我正在使用支持ActionBarActivity
,这就是我在Nexus 5上的支持:
正如您所见,ActionBar
略微滚动屏幕。我已经a video表明了这一点。
我不认为这是预期的行为,是吗? 如果是,我该如何防止这种情况?这似乎非常违反直觉。
答案 0 :(得分:2)
将EditText
换成ScrollView
。
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<EditText
android:id="@+id/text_editor"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="start|top"
android:inputType="textLongMessage|textCapSentences|textMultiLine"
android:textAlignment="gravity" />
</ScrollView>
答案 1 :(得分:0)
只需在操作栏的xml中删除此属性:
应用:layout_scrollFlags = “滚动| enterAlways”强>