android:layout_width="fill_parent"
android:layout_height="310dp"
>
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textSize="25dp"
/>
2.
//onCreate()中findView:
mScrollView_showMessages=(ScrollView)findViewById(R.id.scrollView_showMessages);
//在需要的地方,让ScrollView滚动至指定位置
mScrollView_showMessages.scrollTo(0,mTextView_showMessages.getBottom());