Back to project page interamap.
The source code is released under:
MIT License
If you think the Android project interamap listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.richso.interamap; //ww w. j a va 2 s . c om import android.app.Activity; import android.os.Bundle; import android.text.method.ScrollingMovementMethod; import android.widget.TextView; /** * Created with IntelliJ IDEA. * User: nikolai * Date: 9/15/13 * Time: 9:40 PM * To change this template use File | Settings | File Templates. */ public class MoreInfoScreen extends Activity { private TextView textViewInfo; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_moreinfo); init(); } private void init() { textViewInfo = (TextView)findViewById(R.id.information); textViewInfo.setMovementMethod(new ScrollingMovementMethod()); textViewInfo.setText(test()); } private String test() { String s = " ???????? ????? ???????? ?????????, ?????????? ?????? ???????? ??????????? ? XVI-XVII ????? ? ?????????????????? " + "????????? ? ????????? ??? (?????). ?? ?????? ????????????????, ????? ?? ??? ?????? ???? ???????????? ??????????? ????????. " + "????? ???????? ?????????? ???????????, ????????? ?? ????? ????????? ????? ???????."; return s; } }