Q1. Usted tiene que inflar o personalizar y crear un estilo y se aplican a AlertDialog
He aquí cómo se infla un diseño y aplicarlo a AlertDialog
LayoutInflater li = LayoutInflater.from(ctx);
View view = li.inflate(R.layout.formatted_dialog, null);
AlertDialog.Builder builder = new AlertDialog.Builder(ctx);
builder.setTitle("Formatted");
builder.setView(view);
definir todos los estilos y formato requeridos en el diseño que ha especificado.
Puede acceder TextView específico definido en el diseño utilizando inflado Ver decir
LayoutInflater li = LayoutInflater.from(ctx);
View view = li.inflate(R.layout.formatted_dialog, null);
TextView label=(TextView)view.findViewById(R.id.i_am_from_formatted_layout_lable);
Q2. android:textColorLink="#FF00FF"
se puede utilizar para especificar el color del enlace.
EDIT:
Muestra de diseño guardado como res/layout/link.xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView
android:id="@+id/text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="http://www.google.com"
android:autoLink="web"
android:textColorLink="#FF00FF"
/>
</LinearLayout>
En su onCreate(), o cuando o cada vez que desea llamar AlertDialog
LayoutInflater li = LayoutInflater.from(this);
View view = li.inflate(R.layout.link, null);
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setTitle("Formatted");
builder.setView(view).create().show();
TextView text=(TextView) findViewById(R.id.text);
reemplazar this
con el objeto de contexto si está llamando desde algún otro método.
tengo algunas dudas. ¿Cómo será el diseño formatted_dialog? Entonces, ¿cómo debo agregar mi contenido? ¿Y dónde debería especificar 'android: textColorLink'? – Vivek
Muestra añadida. Espero que esto te dé una idea clara. – Shardul
me puede decir, cómo usar el tipo de letra en AlertDialog –