Как исправить эту ошибку Я застрял ... Я хочу создать страницу входа - PullRequest
0 голосов
/ 19 июня 2020

Я попытался создать страницу входа, используя залп на вкладке фрагмента, но у меня возникла ошибка в моем java коде на volley.newRequesQueue (this) .add (request);

Я новичок в android и я не знаю, что это за ошибка, которая меня тянет. Я хочу подключить ее к своей базе данных.

ошибка говорит: «newRequestQueue (android .content.context) в Volley не может быть применен к (com.example.myandroidpra c .loginpage)» Ниже приведен код: -

 package com.example.myandroidprac;

 import android.os.Bundle;

 import androidx.fragment.app.Fragment;

 import android.view.LayoutInflater;

 import android.view.View;

  enter code here

 import android.view.ViewGroup;

 import android.widget.Button;

 import android.widget.EditText;

 import android.widget.Toast;

 import com.android.volley.AuthFailureError;

 import com.android.volley.Request;

 import com.android.volley.Response;

 import com.android.volley.VolleyError;

 import com.android.volley.toolbox.StringRequest;

 import com.android.volley.toolbox.Volley;

 import java.util.HashMap;

 import java.util.Map;


 /**
  * A simple {@link Fragment} subclass.

мой java код отображается ниже

  */

    public class loginpage extends Fragment {

    Button btn_login;

    EditText et_username, et_password;

    public loginpage() {

        // Required empty public constructor
    }


    @Override

    public View onCreateView(LayoutInflater inflater, ViewGroup container,

                             Bundle savedInstanceState) {

        // Inflate the layout for this fragment

        View v = inflater.inflate(R.layout.fragment_loginpage, container, false);

        btn_login = v.findViewById(R.id.btn_login);

        et_username = v.findViewById(R.id.et_username);

        et_password = v.findViewById(R.id.et_password);

        btn_login.setOnClickListener(new View.OnClickListener() {

            @Override

            public void onClick(View v) {

                login();
            }
        });

        return v;

    }
    public void login(){

        StringRequest request = new StringRequest(Request.Method.POST, 

         "http://10.183.52.242/loginapp/login.php",

                new Response.Listener<String>() {

                    @Override

                    public void onResponse(String response) {

                        Toast.makeText(getContext(),"this is 

            response:"+response,Toast.LENGTH_SHORT).show();

                    }
                }, new Response.ErrorListener() {
            @Override

            public void onErrorResponse(VolleyError error) {

            }
        }){
             @Override

            protected Map<String, String> getParams() throws AuthFailureError {

                Map<String,String> params = new HashMap<>();

                params.put("username","mwalulu");

                params.put("password","coder");

                return params;
                }
        };

        Volley.newRequestQueue(this).add(request);
    }
}

, а приведенный ниже код макета пользовательского интерфейса объясняет, что у меня на этой стороне

  <?xml version="1.0" encoding="utf-8"?>

  <androidx.constraintlayout.widget.ConstraintLayout

  xmlns:android="http://schemas.android.com/apk/res/android"

  xmlns:app="http://schemas.android.com/apk/res-auto"

  xmlns:tools="http://schemas.android.com/tools"

  android:id="@+id/loginPage"

  android:layout_width="match_parent"

  android:layout_height="match_parent"

  tools:context=".loginpage"

  android:paddingRight="10dp"

  android:paddingLeft="10dp">

 <TextView
    android:id="@+id/textView2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:fontFamily="casual"
    android:text="@string/logex"
    android:textSize="24sp"
    android:textStyle="bold"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintHorizontal_bias="0.555"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent"
    app:layout_constraintVertical_bias="0.023" />

<EditText
    android:id="@+id/et_username"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:autofillHints="Enter Username"
    android:ems="10"
    android:hint="@string/user"
    android:inputType="textPersonName"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintHorizontal_bias="0.555"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="@+id/textView2"
    app:layout_constraintVertical_bias="0.116" />

<EditText
    android:id="@+id/et_password"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:autofillHints="Enter Password"
    android:ems="10"
    android:hint="@string/pass"
    android:inputType="textPassword"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintHorizontal_bias="0.555"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toBottomOf="@+id/et_username"
    app:layout_constraintVertical_bias="0.065" />

<Button
    android:id="@+id/btn_login"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:text="@string/logbtn"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintHorizontal_bias="0.532"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toBottomOf="@+id/et_password"
    app:layout_constraintVertical_bias="0.125" />

 </androidx.constraintlayout.widget.ConstraintLayout>

1 Ответ

0 голосов
/ 19 июня 2020

Поскольку ваш класс extends Fragment не может передавать this в качестве аргумента функции Volley.newRequestQueue(). Измените this на getContext():

Volley.newRequestQueue(getContext()).add(request);

Из Android документации Context , если вы посмотрите на прямые и косвенные подклассы, вы не найдете Fragment. Но вы найдете класс Activity и многие другие. Таким образом, вы можете использовать getActivity() или лучше getContext(), чтобы получить ссылку на Context.

Итак, оба решения действительны:

Volley.newRequestQueue(getContext()).add(request);
Volley.newRequestQueue(getActivity()).add(request);
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...