我有这个布局:
<ScrollView
android:id="@+id/scroll_view"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingTop="@dimen/keyline_1"
android:layout_above="@+id/action_bar_layout"
android:orientation="vertical">
....
<EditText
android:id="@+id/message"
style="@style/ItemNewsFeedMessage"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="textMultiLine"/>
</ScrollView
我尝试了这些解决方案:https://gist.github.com/laaptu/4cb395fded9a0700fcdb
不幸的是行为还不正确:当我在EditText末尾输入新闻字符时,主卷轴不会同时移动,因此我无法看到我的最后一个字符集。 / p>
感谢您的帮助!
答案 0 :(得分:0)
你的问题不够明确,可能这可以解决你的问题
// set request Focus
mEditText.requestFocus(View.FOCUS_RIGHT);
layout.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context=".MainActivity">
<ScrollView
android:id="@+id/scroll_view"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@+id/action_bar_layout"
android:orientation="vertical">
<EditText
android:id="@+id/message"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/lorem_ipsum"
android:textSize="22sp"
android:inputType="textMultiLine"/>
</LinearLayout>
</ScrollView>
</RelativeLayout>