Giriş
Şöyle tanımlarız.
Şöyle yaparız.
Şöyle yaparız.
XML ile şöyle yaparız.
Şöyle tanımlarız.
<ScrollView ...>
<LinearLayout ...">
<EditText .../>
<CheckBox .../>
<CheckBox .../>
<TextView .../>
<Button .../>
...
</LinearLayout>
</ScrollView>
fullScroll metoduŞöyle yaparız.
scrollView.post(new Runnable() {
@Override
public void run() {
scrollView.fullScroll(ScrollView.FOCUS_DOWN);
}
});
scrollTo metoduŞöyle yaparız.
scrollView.post(new Runnable() {
@Override
public void run() {
scroll.scrollTo(0, scroll.getBottom());
}
});
setBackground metoduXML ile şöyle yaparız.
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/scroll_formatted"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:clickable="false"
android:focusable="false"
android:focusableInTouchMode="false"
android:background="@color/Your_White_Color">
Şöyle yaparız.ScrollView scrollView = (ScrollView) findViewById(R.id.scroll_formatted);
scrollView.setBackground(R.color.Your_White_Color);
Hiç yorum yok:
Yorum Gönder