Пожалуйста, просмотрите мой код.Этот код фактически извлекает значения из Firebase и добавляет его в представление сетки, хотя я обнаружил, что gridView обновляется с использованием дублированных значений, но прослушиватель onclick выполняется правильно, давая только уникальные значения.
У gridView есть повторяющиеся значения, и он, кажется, изменяется случайным образом.Было бы полезно, если бы кто-нибудь мог мне помочь с примером рабочего кода.Может ли кто-нибудь, пожалуйста, помогите мне решить эту проблему?
public class Materials extends Fragment {
private Button btnTEST;
Context context;
CardView cardview;
RelativeLayout.LayoutParams layoutparams;
TextView textview;
RelativeLayout relativeLayout;
GridView grid;
int l=0,fl=0;
@Nullable
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Inflate the layout for this fragment
View v= inflater.inflate(R.layout.fragment_materials, container, false);
context = v.getContext();
grid=(GridView)v.findViewById(R.id.grid);
final String[] web=new String[13];
final int[] imageId = new int[13];
DatabaseReference ref = FirebaseDatabase.getInstance().getReference("Materials_management_new/Materials/");
ref.addValueEventListener(new ValueEventListener() {
@Override
public void onDataChange(DataSnapshot dataSnapshot) {
if (fl == 0) {
for (DataSnapshot snap : dataSnapshot.getChildren()) {
web[l] =snap.getKey().toString();
l++;
fl=1;
}
//= gson.toJson(dataSnapshot);
// Toast.makeText(LoginPage.this, json, Toast.LENGTH_SHORT).show();
}
CustomGrid adapter;
adapter = new CustomGrid(getContext(), web, imageId);
grid.setAdapter(adapter);
}
@Override
public void onCancelled(DatabaseError databaseError) {
System.out.println("The read failed: " + databaseError.getCode());
}
});
// Toast.makeText(getActivity(), "SUccesssssafmlnfka", Toast.LENGTH_SHORT).show();
grid.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view,
int position, long id) {
Toast.makeText(getActivity(), "You Clicked at " +web[+ position], Toast.LENGTH_SHORT).show();
}
});
return v;
}
}
И это мой пользовательский код сетки
public class CustomGrid extends BaseAdapter{
private Context mContext;
private final String[] web;
private final int[] Imageid;
public CustomGrid(Context c,String[] web,int[] Imageid ) {
mContext = c;
this.Imageid = Imageid;
this.web = web;
}
@Override
public int getCount() {
// TODO Auto-generated method stub
return web.length;
}
@Override
public Object getItem(int position) {
// TODO Auto-generated method stub
return null;
}
@Override
public long getItemId(int position) {
// TODO Auto-generated method stub
return 0;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
// TODO Auto-generated method stub
View grid;
LayoutInflater inflater = (LayoutInflater) mContext
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
if (convertView == null) {
grid = new View(mContext);
grid = inflater.inflate(R.layout.grid_single, null);
TextView textView = (TextView) grid.findViewById(R.id.grid_text);
ImageView imageView = (ImageView)grid.findViewById(R.id.grid_image);
textView.setText(web[position]);
imageView.setImageResource(Imageid[position]);
} else {
grid = (View) convertView;
}
return grid;
}
}