MainActivity.java:
TextView textView = findViewById(R.id.tvid);
String text = "Your Text";
SpannableString ss = new SpannableString(text);
ForegroundColorSpan fcsMain = new ForegroundColorSpan(Color.rgb(58,
186,
186
));
ss.setSpan(fcsMain, 5, 9, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
textView.setText(ss);
String text = "Your Text";
SpannableString ss = new SpannableString(text);
ForegroundColorSpan fcsMain = new ForegroundColorSpan(Color.rgb(58,
186,
186
));
ss.setSpan(fcsMain, 5, 9, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
textView.setText(ss);
একটি মন্তব্য পোস্ট করুন
0 মন্তব্যসমূহ