#java #android #android-layout #material-components-android #android-textinputlayout
#java #Android #android-layout #материал-компоненты-android #android-textinputlayout
Вопрос:
Итак, я столкнулся с проблемой, когда у меня есть один счетчик, у которого есть 4 варианта 1-4, и у меня есть 4 TextInputLayout
теперь я хочу добиться того, чтобы начало фрагмента, которое я хочу, чтобы мое textinputlayout
было скрыто. Когда я нажимаю на счетчик и выбираю первый вариант, тогда должен быть виден только один TextInputLayout
. Когда я выбираю 2 параметра, мне нужно, чтобы 2 TextInputLayout
были видны и так далее. Теперь проблема в том, что мой TextInputLayout
по-прежнему не виден, я предоставил switch
случай, в котором из 1 выбрано, а затем сделать TextInputLayout
видимым, но это не работает. Любая помощь была бы оценена
XML-файл:
<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto">
<ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="60dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:text="Choose Number of vehicle and quantity"
android:layout_marginLeft="12dp"/>
<Spinner
android:id="@ id/spinner"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:layout_marginLeft="12dp"
android:layout_marginRight="12dp"
android:background="@drawable/spinner_border"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<com.google.android.material.textfield.TextInputLayout
android:id="@ id/VehicleNoText1"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_marginTop="16dp"
android:layout_marginLeft="12dp"
android:layout_marginRight="12dp"
android:layout_weight="0.5"
android:hint="Vehicle No"
android:visibility="invisible"
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox">
<com.google.android.material.textfield.TextInputEditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="12sp"
android:imeOptions="actionNext"
android:inputType="text"/>
</com.google.android.material.textfield.TextInputLayout>
<com.google.android.material.textfield.TextInputLayout
android:id="@ id/QuantityText1"
android:layout_width="0dp"
android:layout_height="match_parent"
android:hint="Quantity"
android:layout_marginTop="16dp"
android:layout_marginLeft="9dp"
android:layout_marginRight="12dp"
android:layout_weight="0.5"
android:visibility="invisible"
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox">
<com.google.android.material.textfield.TextInputEditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="12sp"
android:inputType="text"/>
</com.google.android.material.textfield.TextInputLayout>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<com.google.android.material.textfield.TextInputLayout
android:id="@ id/VehicleNoText2"
android:layout_width="0dp"
android:layout_height="match_parent"
android:hint="Vehicle No"
android:layout_marginTop="16dp"
android:layout_marginLeft="12dp"
android:layout_marginRight="12dp"
android:layout_weight="0.5"
android:visibility="invisible"
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox">
<com.google.android.material.textfield.TextInputEditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="12sp"
android:imeOptions="actionNext"
android:inputType="text"/>
</com.google.android.material.textfield.TextInputLayout>
<com.google.android.material.textfield.TextInputLayout
android:id="@ id/QuantityText2"
android:layout_width="0dp"
android:layout_height="match_parent"
android:hint="Quantity"
android:layout_marginTop="16dp"
android:layout_marginLeft="9dp"
android:layout_marginRight="12dp"
android:layout_weight="0.5"
android:visibility="invisible"
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox">
<com.google.android.material.textfield.TextInputEditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="12sp"
android:inputType="text"/>
</com.google.android.material.textfield.TextInputLayout>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<com.google.android.material.textfield.TextInputLayout
android:id="@ id/VehicleNoText3"
android:layout_width="0dp"
android:layout_height="match_parent"
android:hint="Vehicle No"
android:layout_marginTop="16dp"
android:layout_marginLeft="12dp"
android:layout_marginRight="12dp"
android:layout_weight="0.5"
android:visibility="invisible"
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox">
<com.google.android.material.textfield.TextInputEditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="12sp"
android:imeOptions="actionNext"
android:inputType="text"/>
</com.google.android.material.textfield.TextInputLayout>
<com.google.android.material.textfield.TextInputLayout
android:id="@ id/QuantityText3"
android:layout_width="0dp"
android:layout_height="match_parent"
android:hint="Quantity"
android:layout_marginTop="16dp"
android:layout_marginLeft="9dp"
android:layout_marginRight="12dp"
android:layout_weight="0.5"
android:visibility="invisible"
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox">
<com.google.android.material.textfield.TextInputEditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="12sp"
android:inputType="text"/>
</com.google.android.material.textfield.TextInputLayout>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<com.google.android.material.textfield.TextInputLayout
android:id="@ id/VehicleNoText4"
android:layout_width="0dp"
android:layout_height="match_parent"
android:hint="Vehicle No"
android:layout_marginTop="16dp"
android:layout_marginLeft="12dp"
android:layout_marginRight="12dp"
android:layout_weight="0.5"
android:visibility="invisible"
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox">
<com.google.android.material.textfield.TextInputEditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="12sp"
android:imeOptions="actionNext"
android:inputType="text"/>
</com.google.android.material.textfield.TextInputLayout>
<com.google.android.material.textfield.TextInputLayout
android:id="@ id/QuantityText4"
android:layout_width="0dp"
android:layout_height="match_parent"
android:hint="Quantity"
android:layout_marginTop="16dp"
android:layout_marginLeft="9dp"
android:layout_marginRight="12dp"
android:layout_weight="0.5"
android:visibility="invisible"
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox">
<com.google.android.material.textfield.TextInputEditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="12sp"
android:inputType="text"/>
</com.google.android.material.textfield.TextInputLayout>
</LinearLayout>
</LinearLayout>
</ScrollView>
</androidx.coordinatorlayout.widget.CoordinatorLayout>
Мой класс фрагмента
List < String > categories = new ArrayList < > ();
categories.add("1");
categories.add("2");
categories.add("3");
categories.add("4");
ArrayAdapter < String > dataAdapter = new ArrayAdapter < > (this.getActivity(), android.R.layout.simple_spinner_item, categories);
// Drop down layout style - list view with radio button
dataAdapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
// attaching data adapter to spinner
vehicleSelector.setAdapter(dataAdapter);
vehicleSelector.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() {
@Override
public void onItemSelected(AdapterView << ? > adapterView, View view, int i, long l) {
String selectedItem = adapterView.getItemAtPosition(i).toString();
Log.i("Values", selectedItem);
switch (selectedItem) {
case "1":
c13.getEditText().setVisibility(View.VISIBLE);
Objects.requireNonNull(c14.getEditText()).setVisibility(View.VISIBLE);
break;
case "2":
Objects.requireNonNull(c13.getEditText()).setVisibility(View.VISIBLE);
Objects.requireNonNull(c14.getEditText()).setVisibility(View.VISIBLE);
Objects.requireNonNull(c15.getEditText()).setVisibility(View.VISIBLE);
Objects.requireNonNull(c16.getEditText()).setVisibility(View.VISIBLE);
break;
case "3":
Objects.requireNonNull(c13.getEditText()).setVisibility(View.VISIBLE);
Objects.requireNonNull(c14.getEditText()).setVisibility(View.VISIBLE);
Objects.requireNonNull(c15.getEditText()).setVisibility(View.VISIBLE);
Objects.requireNonNull(c16.getEditText()).setVisibility(View.VISIBLE);
Objects.requireNonNull(c17.getEditText()).setVisibility(View.VISIBLE);
Objects.requireNonNull(c18.getEditText()).setVisibility(View.VISIBLE);
break;
case "4":
Objects.requireNonNull(c13.getEditText()).setVisibility(View.VISIBLE);
Objects.requireNonNull(c14.getEditText()).setVisibility(View.VISIBLE);
Objects.requireNonNull(c15.getEditText()).setVisibility(View.VISIBLE);
Objects.requireNonNull(c16.getEditText()).setVisibility(View.VISIBLE);
Objects.requireNonNull(c17.getEditText()).setVisibility(View.VISIBLE);
Objects.requireNonNull(c18.getEditText()).setVisibility(View.VISIBLE);
Objects.requireNonNull(c19.getEditText()).setVisibility(View.VISIBLE);
Objects.requireNonNull(c20.getEditText()).setVisibility(View.VISIBLE);
break;
}
}
@Override
public void onNothingSelected(AdapterView << ? > adapterView) {
}
});
Комментарии:
1. пожалуйста, предоставьте код, который показывает, что вы пробовали
2. @AbhishekChoudhary вот мой код
3. Я предполагаю, что это неполно, что такое переменные c13, c14, c15? Являются ли эти textInputLayouts?
4. Это TextInputLayout, мой коммутатор работает нормально, и если я попытаюсь сделать невидимым из моего коммутатора, граница TextInputLayout только скрывается. Я предоставил только код, в котором возникает проблема @AbhishekChoudhary
5. Сколько у вас блесен?
Ответ №1:
Инициализируйте свою переменную TextInputEditText следующим образом:
TextInputEditText myEditText = findViewById(R.id.my_edit_text);
а затем выполните
myEditText.setVisibility(View.VISIBLE)
вместо
myTextInputLayout.getEditText().setVisibility(View.VISIBLE)
. (Это то, что вы делаете, вызывая getEditText()
переменную TextInputLayout ).
Обратите внимание, что вам необходимо указать идентификатор для TextInputEditText, который находится внутри TextInputLayout.