Código HTML:
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="match_parent" android:layout_height="wrap_content"> <TextView android:id="@+id/amount_rooms" android:layout_width="match_parent" android:layout_height="wrap_content" android:hint="@string/rooms_placeholder"/> <EditText android:id="@+id/iamount_rooms" android:layout_width="match_parent" android:layout_height="wrap_content" android:ems="1" android:hint="@string/rooms_default" android:paddingLeft="15dp" android:inputType="number" /> <TextView android:id="@+id/amount_baths" android:layout_width="match_parent" android:layout_height="wrap_content" android:hint="@string/baths_placeholder" /> <EditText android:id="@+id/in_amount_baths" android:layout_width="match_parent" android:layout_height="wrap_content" android:ems="1" android:hint="@string/baths_default" android:paddingLeft="15dp" android:inputType="number" /> </LinearLayout>
Código:
Sencillamente no me muestra nada...TextView rooms = (TextView) findViewById(R.id.iamount_rooms); Toast toast; toast = Toast.makeText(getApplicationContext(), rooms.getText(), Toast.LENGTH_LONG); toast.show();
¿Alguna sugerencia? No sé si deba especificar a la clase R de que hay un nuevo layout o algo así, ya que con el activity_main.xml no hay problema.
Desde ya muchas gracias.