open - texto link android studio
TextView "fill_parent" no llena al padre (1)
Tengo un diseño simple:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical" >
<TextView
android:id="@+id/textView1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Large Text"
android:textAppearance="?android:attr/textAppearanceLarge" />
</LinearLayout>
Pero mi TextView no toma todo el ancho aunque lo hice fill_parent. ¿Cómo puedo hacer que sea a tamaño completo en lugar de solo el tamaño del contenido?
Haga que LinearLayout
externo tenga match_parent
lugar de wrap_content
en los atributos android:layout_width
y android:layout_height
.
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >