Android Open Source - interamap More Info Screen






From Project

Back to project page interamap.

License

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.

Java Source Code

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;
    }
}




Java Source Code List

com.richso.interamap.AuthorizationScreen.java
com.richso.interamap.BaseActivity.java
com.richso.interamap.CategoryScreen.java
com.richso.interamap.HomeScreen.java
com.richso.interamap.MapScreen.java
com.richso.interamap.MoreInfoScreen.java
com.richso.interamap.RegistrationScreen.java
com.richso.interamap.SplashScreen.java
com.richso.interamap.adapter.CategoryAdapter.java
com.richso.interamap.adapter.ImageAdapter.java
com.richso.interamap.adapter.MarkerInfoAdapter.java
com.richso.interamap.dialogue.WarningDialog.java
com.richso.interamap.item.Category.java
com.richso.interamap.item.ItemCategory.java
com.richso.interamap.utils.Constant.java
com.richso.interamap.utils.Device.java
com.richso.interamap.utils.L.java
com.richso.interamap.view.MapFragment.java