用于在片段中膨胀多个布局的Boilerplate代码

时间:2016-05-17 14:44:46

标签: android android-layout android-fragments

假设我有两个xml布局:progbarlayout& linearlayout以及带有此

的片段
 TextView mTxtDisplay;
 ImageView mImageView;
 mTxtDisplay = (TextView) findViewById(R.id.txtDisplay);
 String url = "http://my-json-feed";

 JsonObjectRequest jsObjRequest = new JsonObjectRequest(Request.Method.GET, url, null, new Response.Listener < JSONObject > () {    
       
     @Override  
     public void onResponse(JSONObject response) {    
         mTxtDisplay.setText("Response: " + response.toString());  
     }
 }, new Response.ErrorListener() {    
       
     @Override  
     public void onErrorResponse(VolleyError error) {    
         // TODO Auto-generated method stub
     }
 });

 // Access the RequestQueue through your singleton class.
 MySingleton.getInstance(this).addToRequestQueue(jsObjRequest);

是否可以在片段的progbarlayout中膨胀onCreateView然后在JsonObjectRequest的onResponse中移除progbarlayout布局并膨胀linearlayout

如果是,您可以提供一个代码片段来演示如何吗?

0 个答案:

没有答案