Scrollable TextView in Android Widget

前端 未结 4 1286
刺人心
刺人心 2021-01-15 05:34

I would like to create an android widget with a scrollable textview.

The solutions given to this question Making TextView scrollable on Android cannot be applied be

4条回答
  •  无人共我
    2021-01-15 06:09

    In mainactivity.java:

    after code text view:

    TextView txt = (TextView) findViewById(R.id.textView id);
    

    Enter this code:

    txt.setMovementMethod(new ScrollingMovementMethod());
    

    and you will be ok.

提交回复
热议问题