我有一个带有微调器和listview的片段,当用户从微调器中选择一个选项时,列表视图会更新,我想到在选择一个选项时我必须刷新片段。但问题是当我从" onItemSelected"刷新片段时片段进入无限循环。所以我做了一个" refreshFragment方法"解决问题,但现在用户选择一个选项后,旋转器的第一个选项不再刷新片段,除了第一个选项之外,所有其他选项都运行良好,因为我没有添加&#34 ; refreshFragment方法"在这个选项中,因为如果我添加它,它将再次进入无限循环。抱歉我的英语不好因为这个原因我总是得到投票。
public class MatchesFragment extends Fragment implements SwipeRefreshLayout.OnRefreshListener, AdapterView.OnItemSelectedListener {
private RecyclerView recyclerView;
private MatchAdapter matchAdapter;
private ArrayList<Matches> matchCollection;
SwipeRefreshLayout mSwipeRefreshLayout;
String apiLink;
String apiType = "1";
public MatchesFragment() {
// Required empty public constructor
}
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Inflate the layout for this fragment
return inflater.inflate(R.layout.fragment_matches, container, false);
}
@Override
public void onActivityCreated(@Nullable Bundle savedInstanceState) {
super.onActivityCreated(savedInstanceState);
mSwipeRefreshLayout = (SwipeRefreshLayout) getView().findViewById(R.id.swiperefresh);
mSwipeRefreshLayout.setOnRefreshListener(this);
if (getArguments() != null) {
Bundle arguments = getArguments();
apiLink = arguments.getString("ApiLink");
apiType = arguments.getString("apiType");
Toast.makeText(getContext().getApplicationContext(), apiType, Toast.LENGTH_LONG).show();
}else {
apiLink = "http://first-api-link";
Toast.makeText(getContext().getApplicationContext(), "nothing", Toast.LENGTH_LONG).show();
}
Spinner spinner = (Spinner) getView().findViewById(R.id.spinner);
spinner.setOnItemSelectedListener(this);
// Create an ArrayAdapter using the string array and a default spinner layout
ArrayAdapter<CharSequence> adapter = ArrayAdapter.createFromResource(getActivity(),
R.array.planets_array, android.R.layout.simple_spinner_item);
// Specify the layout to use when the list of choices appears
adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
// Apply the adapter to the spinner
spinner.setAdapter(adapter);
ConnectivityManager cm = (ConnectivityManager) getContext().getApplicationContext().getSystemService(Context.CONNECTIVITY_SERVICE);
NetworkInfo activeNetwork = cm.getActiveNetworkInfo();
String answer = "Internet";
if (null != activeNetwork) {
if(activeNetwork.getType() == ConnectivityManager.TYPE_WIFI)
answer="You are connected to a WiFi Network";
if(activeNetwork.getType() == ConnectivityManager.TYPE_MOBILE)
answer="You are connected to a Mobile Network";
init();
new FetchDataTask().execute();
}
else {
answer = "No internet Connectivity";
Toast.makeText(getContext().getApplicationContext(), answer, Toast.LENGTH_LONG).show();
}
}
private void init() {
recyclerView = (RecyclerView) getActivity().findViewById(R.id.matchesRecyclerview);
recyclerView.setLayoutManager(new LinearLayoutManager(getContext()));
recyclerView.setHasFixedSize(true);
matchCollection = new ArrayList<>();
matchAdapter = new MatchAdapter(matchCollection, getActivity());
recyclerView.setAdapter(matchAdapter);
}
@Override
public void onRefresh() {
init();
new FetchDataTask().execute();
}
@Override
public void onItemSelected(AdapterView<?> parent, View view, int position, long id) {
apiLink = "http://first-api-link";
switch (position){
//can't add refreshFragment in here it makes infinity lopp
case 0: apiLink = "first-api-link";
break;
case 1:
refreshFragment("second-api-link", 2);
break;
case 2:
refreshFragment("third-api-link", 3);
break;
case 3:
refreshFragment("fourth-api-link", 4);
break;
case 4:
refreshFragment("fifth-api-link", 5);
break;
case 5:
refreshFragment("sixth-api-link", 6);
break;
}
}
@Override
public void onNothingSelected(AdapterView<?> parent) {
}
public class FetchDataTask extends AsyncTask<Void, Void, Void> {
private String mZomatoString;
@Override
protected Void doInBackground(Void... params) {
HttpURLConnection urlConnection = null;
BufferedReader reader = null;
Uri builtUri = Uri.parse(apiLink);
URL url;
try {
url = new URL(builtUri.toString());
urlConnection = (HttpURLConnection) url.openConnection();
urlConnection.setRequestMethod("GET");
urlConnection.setRequestProperty("user-key", "acfd3e623c5f01289bd87aaaff1926c1");
urlConnection.connect();
InputStream inputStream = urlConnection.getInputStream();
StringBuffer buffer = new StringBuffer();
if (inputStream == null) {
//Nothing to do
return null;
}
reader = new BufferedReader(new InputStreamReader(inputStream));
String line;
while ((line = reader.readLine()) != null) {
buffer.append(line + "\n");
}
if (buffer.length() == 0) {
return null;
}
mZomatoString = buffer.toString();
JSONObject jsonObject = new JSONObject(mZomatoString);
Log.v("Response", jsonObject.toString());
JSONArray matchArray = jsonObject.getJSONArray("data");
//list = new ArrayList<>();
for (int i = 0; i < matchArray.length(); i++) {
Log.v("BRAD_", i + "");
String home_team;
String away_team;
String home_flag;
String away_flag;
JSONObject jTeam = (JSONObject) matchArray.get(i);
if (apiType == "1"){
JSONObject jHomeTeam = (JSONObject) jTeam.getJSONObject("home_team");
JSONObject jAwayTeam = (JSONObject) jTeam.getJSONObject("away_team");
//get data's from json sent from link
home_team = jHomeTeam.getString("name");
away_team = jAwayTeam.getString("name");
home_flag = jHomeTeam.getString("flag");
away_flag = jAwayTeam.getString("flag");
}else{
//get data's from json sent from link
home_team = jTeam.getString("home_team");
away_team = jTeam.getString("away_team");
home_flag = "https://www.countries-ofthe-world.com/flags-normal/flag-of-Russia.png";
away_flag = "https://www.countries-ofthe-world.com/flags-normal/flag-of-Russia.png";
}
Matches matches = new Matches();
matches.setHome_team(home_team);
matches.setAway_team(away_team);
matches.setHome_flag(home_flag);
matches.setAway_flag(away_flag);
matchCollection.add(matches);
// Stopping swipe refresh
mSwipeRefreshLayout.setRefreshing(false);
}
} catch (MalformedURLException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} catch (JSONException e) {
e.printStackTrace();
} finally {
if (urlConnection != null) {
urlConnection.disconnect();
}
if (reader != null) {
try {
reader.close();
} catch (final IOException e) {
Log.e("MainActivity", "Error closing stream", e);
}
}
}
return null;
}
@Override
protected void onPostExecute(Void aVoid) {
matchAdapter.notifyDataSetChanged();
}
}
public void refreshFragment(String apiLinks, int apiType){
FragmentManager fragmentManager = getActivity().getSupportFragmentManager();
FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction();
MatchesFragment fragment = new MatchesFragment();
Bundle args = new Bundle();
args.putString("ApiLink", apiLinks);
args.putString("apiType", String.valueOf(apiType));
fragment.setArguments(args);
fragmentTransaction.replace(R.id.linearfr, fragment);
fragmentTransaction.commit();
}
}
答案 0 :(得分:0)
使用微调器时,需要考虑以下几点。它始终具有选定的值,并且选择的默认值是第一个。因此,在创建片段时,将选择微调器中的第一个值。
当您手动打开下拉列表并首次选择第一个项目时,默认情况下当前选择它,因此不会触发您的选择,因此不会调用刷新。诀窍是添加虚拟项目作为第一个,并忽略onClick中的位置0(你已经在做了)。
无限循环正在发生,因为spinner在创建视图时默认选择第一个项目,因此触发了位置0的onClick,再次调用刷新,更改片段,创建新的微调器,选择第一个项目,以及恶意循环继续。