Back to project page Android-TextFontStyle.
The source code is released under:
Apache License
If you think the Android project Android-TextFontStyle 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.textstyle.sample; //from w ww .j ava2 s . co m import android.app.Activity; import android.graphics.Typeface; import android.os.Bundle; import android.widget.TextView; /** * User: raychenon * Date: 15/7/13 * Time: 9:42 PM */ public class SimpleTextActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.avt_text); } }