android - temas - Uso del diseño XML para TextView
styles android studio (2)
textview.xml:
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/txtView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="This is a phone number 0800 32 32 32"
android:autoLink="phone">
</TextView>
En onCreate solo menciona
setContentView(R.layout.textview);
Yo uso Xamarin y tengo el siguiente código:
base.OnCreate (bundle);
TextView textView = new TextView (this.ApplicationContext);
textView.AutoLinkMask = Android.Text.Util.MatchOptions.PhoneNumbers;
textView.Text = "This is a phone number 0800 32 32 32";
//Linkify.AddLinks(textView, MatchOptions.PhoneNumbers);
SetContentView(textView);
¿Puedo obtener ayuda para hacer el mismo código pero con los archivos de diseño de recursos?
Gracias por adelantado
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/textview"
android:text="This is a phone number 0800 32 32 32"
android:autoLink="phone"
/>