Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/android/215.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/4/matlab/15.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Android java.lang.NullPointerException AllSuggestionActivity.onTextChanged(AllSuggestionActivity.this.adapter.getFilter().filter(cs);)_Android - Fatal编程技术网

Android java.lang.NullPointerException AllSuggestionActivity.onTextChanged(AllSuggestionActivity.this.adapter.getFilter().filter(cs);)

Android java.lang.NullPointerException AllSuggestionActivity.onTextChanged(AllSuggestionActivity.this.adapter.getFilter().filter(cs);),android,Android,当我使用EditText执行列表视图的代码以在行中进行过滤时,我收到一个错误(java.lang.NullPointerException) AllSuggestionActivity.this.adapter.getFilter().filter(cs) 请帮忙 public class AllSuggestionsActivity extends ListActivity { EditText inputSearch; ListView lstList; // P

当我使用
EditText
执行
列表视图
的代码以在行中进行过滤时,我收到一个错误(
java.lang.NullPointerException

AllSuggestionActivity.this.adapter.getFilter().filter(cs)

请帮忙

public class AllSuggestionsActivity extends ListActivity {

    EditText inputSearch;
    ListView lstList;

    // Progress Dialog
    private ProgressDialog pDialog;

    ArrayAdapter<String> adapter = null;

    // Creating JSON Parser object
    JSONParser jParser = new JSONParser();

    ArrayList<HashMap<String, String>> suggestionsList;

    // url to get all suggestions list
    private static String url_all_suggestions = "http://10.0.2.2/JKUAT-M-SUGGESTION-BOX/get_all_suggestions.php";

    // JSON Node names
    private static final String TAG_SUCCESS = "success";
    private static final String TAG_SUGGESTIONS = "suggestions";
    private static final String TAG_SID = "sid";
    private static final String TAG_SUBJECT = "subject";

    // suggestions JSONArray
    JSONArray suggestions = null;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.all_suggestions);

        inputSearch = (EditText) findViewById(R.id.inputSearch);
        lstList = (ListView) findViewById(android.R.id.list);


        // Hashmap for ListView
        suggestionsList = new ArrayList<HashMap<String, String>>();

        // Loading suggestions in Background Thread
        new LoadAllSuggestions().execute();

        // Get listview
        ListView lv = getListView();

        /**
         * Enabling Search Filter
         * */
        inputSearch.addTextChangedListener(new TextWatcher() {

            @Override
            public void onTextChanged(CharSequence cs, int arg1, int arg2, int arg3) {
                // When user changed the Text
                AllSuggestionsActivity.this.adapter.getFilter().filter(cs);   
            }

            @Override
            public void beforeTextChanged(CharSequence arg0, int arg1, int arg2,
                    int arg3) {
                // TODO Auto-generated method stub

            }

            @Override
            public void afterTextChanged(Editable arg0) {
                // TODO Auto-generated method stub                          
            }
        });


        // on seleting single suggestion
        // launching Edit Suggestion Screen
        lv.setOnItemClickListener(new OnItemClickListener() {

            @Override
            public void onItemClick(AdapterView<?> parent, View view,
                    int position, long id) {
                // getting values from selected ListItem
                String sid = ((TextView) view.findViewById(R.id.sid)).getText()
                        .toString();

                // Starting new intent
                Intent in = new Intent(getApplicationContext(),
                        EditSuggestionActivity.class);
                // sending sid to next activity
                in.putExtra(TAG_SID, sid);

                // starting new activity and expecting some response back
                startActivityForResult(in, 100);
            }
        });

    }

    // Response from Edit Suggestion Activity
    @Override
    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
        super.onActivityResult(requestCode, resultCode, data);
        // if result code 100
        if (resultCode == 100) {
            // if result code 100 is received
            // means user edited/deleted suggestion
            // reload this screen again
            Intent intent = getIntent();
            finish();
            startActivity(intent);
        }

    }

    /**
     * Background Async Task to Load all suggestion by making HTTP Request
     * */
    class LoadAllSuggestions extends AsyncTask<String, String, String> {

        /**
         * Before starting background thread Show Progress Dialog
         * */
        @Override
        protected void onPreExecute() {
            super.onPreExecute();
            pDialog = new ProgressDialog(AllSuggestionsActivity.this);
            pDialog.setMessage("Loading all suggestions. Please wait.......");
            pDialog.setIndeterminate(false);
            pDialog.setCancelable(false);
            pDialog.show();
        }

        /**
         * getting All suggestions from url
         * */
        @Override
        protected String doInBackground(String... args) {
            // Building Parameters
            List<NameValuePair> params = new ArrayList<NameValuePair>();
            // getting JSON string from URL
            JSONObject json = jParser.makeHttpRequest(url_all_suggestions,
                    "GET", params);

            // Check your log cat for JSON reponse
            Log.d("All Suggestions: ", json.toString());

            try {
                // Checking for SUCCESS TAG
                int success = json.getInt(TAG_SUCCESS);

                if (success == 1) {
                    // suggestions found
                    // Getting Array of Suggestions
                    suggestions = json.getJSONArray(TAG_SUGGESTIONS);

                    // looping through All Suggestions
                    for (int i = 0; i < suggestions.length(); i++) {
                        JSONObject c = suggestions.getJSONObject(i);

                        // Storing each json item in variable
                        String id = c.getString(TAG_SID);
                        String subject = c.getString(TAG_SUBJECT);

                        // creating new HashMap
                        HashMap<String, String> map = new HashMap<String, String>();

                        // adding each child node to HashMap key => value
                        map.put(TAG_SID, id);
                        map.put(TAG_SUBJECT, subject);

                        // adding HashList to ArrayList
                        suggestionsList.add(map);
                    }
                } else {
                    // no suggestions found
                    Intent i = new Intent(getApplicationContext(),
                            MainScreenActivity.class);
                    // Closing all previous activities
                    i.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
                    startActivity(i);
                }
            } catch (JSONException e) {
                e.printStackTrace();
            }

            return null;
        }

        /**
         * After completing background task Dismiss the progress dialog
         * **/
        @Override
        protected void onPostExecute(String file_url) {
            // dismiss the dialog after getting all suggestions
            pDialog.dismiss();
            // updating UI from Background Thread
            runOnUiThread(new Runnable() {
                @Override
                public void run() {
                    /**
                     * Updating parsed JSON data into ListView
                     * */
                    ListAdapter adapter = new SimpleAdapter(
                            AllSuggestionsActivity.this, suggestionsList,
                            R.layout.list_item, new String[] { TAG_SID,
                                    TAG_SUBJECT }, new int[] { R.id.sid,
                                    R.id.subject });
                    // updating listview
                    setListAdapter(adapter);
                }
            });
        }
    }
}
public类AllSuggestionActivity扩展了ListActivity{
编辑文本输入搜索;
列表视图列表;
//进度对话框
私人对话;
ArrayAdapter适配器=空;
//创建JSON解析器对象
JSONParser jParser=新的JSONParser();
ArrayList建议列表;
//获取所有建议列表的url
私有静态字符串url\u所有建议=”http://10.0.2.2/JKUAT-M-SUGGESTION-BOX/get_all_suggestions.php";
//JSON节点名称
私有静态最终字符串标记_SUCCESS=“SUCCESS”;
私有静态最终字符串标记_SUGGESTIONS=“SUGGESTIONS”;
私有静态最终字符串标记_SID=“SID”;
私有静态最终字符串标记_SUBJECT=“SUBJECT”;
//建议JSONArray
JSONArray建议=null;
@凌驾
创建时的公共void(Bundle savedInstanceState){
super.onCreate(savedInstanceState);
setContentView(右布局,所有建议);
inputSearch=(EditText)findViewById(R.id.inputSearch);
lstList=(ListView)findViewById(android.R.id.list);
//ListView的Hashmap
suggestionsList=新建ArrayList();
//在后台线程中加载建议
新建LoadAllSuggestions().execute();
//获取列表视图
ListView lv=getListView();
/**
*启用搜索筛选器
* */
inputSearch.addTextChangedListener(新的TextWatcher(){
@凌驾
public void onTextChanged(字符序列cs、int arg1、int arg2、int arg3){
//当用户更改文本时
AllSuggestionActivity.this.adapter.getFilter().filter(cs);
}
@凌驾
更改前的公共void(字符序列arg0、int arg1、int arg2、,
int arg3){
//TODO自动生成的方法存根
}
@凌驾
public void PostTextChanged(可编辑arg0){
//TODO自动生成的方法存根
}
});
//论单项建议的选择
//启动编辑建议屏幕
lv.setOnItemClickListener(新的OnItemClickListener(){
@凌驾
public void onItemClick(AdapterView父级、视图、,
内部位置,长id){
//从选定的ListItem获取值
字符串sid=((TextView)view.findViewById(R.id.sid)).getText()
.toString();
//开始新的意图
Intent in=新的Intent(getApplicationContext(),
EditSuggestionActivity.class);
//正在将sid发送到下一个活动
in.putExtra(标记SID,SID);
//开始新的活动并期望得到一些响应
startActivityForResult(in,100);
}
});
}
//编辑建议活动的回应
@凌驾
受保护的void onActivityResult(int请求代码、int结果代码、意图数据){
super.onActivityResult(请求代码、结果代码、数据);
//如果结果代码为100
如果(结果代码==100){
//如果收到结果代码100
//指用户编辑/删除的建议
//重新加载此屏幕
Intent=getIntent();
完成();
星触觉(意向);
}
}
/**
*通过发出HTTP请求加载所有建议的后台异步任务
* */
类LoadAllSuggestions扩展异步任务{
/**
*在启动后台线程显示进度对话框之前
* */
@凌驾
受保护的void onPreExecute(){
super.onPreExecute();
pDialog=新建进度对话框(AllSuggestionsActivity.this);
pDialog.setMessage(“正在加载所有建议。请稍候……);
pDialog.setUndeterminate(假);
pDialog.setCancelable(假);
pDialog.show();
}
/**
*从url获取所有建议
* */
@凌驾
受保护的字符串doInBackground(字符串…args){
//建筑参数
List params=new ArrayList();
//从URL获取JSON字符串
JSONObject json=jParser.makeHttpRequest(url\u all\u建议,
“得到”,params);
//检查日志cat中的JSON响应
Log.d(“所有建议:,json.toString());
试一试{
//检查成功标签
int success=json.getInt(TAG_success);
如果(成功==1){
//发现的建议
//获得一系列建议
建议=json.getJSONArray(标记建议);
//循环浏览所有建议
for(int i=0;ivalue
map.put(TAG_SID,id);
地图放置(标记主题,主题);
//将哈希列表添加到ArrayList
暗示
<?xml version="1.0" encoding="utf-8"?>

<ScrollView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:fillViewport="true">    

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:orientation="vertical">

    <EditText
        android:id="@+id/inputSearch"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="5dp"
        android:ems="10"
        android:maxLines="1"
        android:hint="Search" >
        <requestFocus />
    </EditText>-->

        <!-- Main ListView 
             Always give id value as list(@android:id/list)
        -->
        <ListView
            android:id="@android:id/list"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"/>

    </LinearLayout>


    enter code here

</ScrollView>
ArrayAdapter<String> adapter = null;
public class AllSuggestionsActivity extends ListActivity {

SimpleAdapter adapter;

EditText inputSearch;

// Progress Dialog
private ProgressDialog pDialog;

// Creating JSON Parser object
JSONParser jParser = new JSONParser();

ArrayList<HashMap<String, String>> suggestionsList;

// url to get all suggestions list
private static String url_all_suggestions = "http://10.0.2.2/JKUAT-M-SUGGESTION-BOX/get_all_suggestions.php";

// JSON Node names
private static final String TAG_SUCCESS = "success";
private static final String TAG_SUGGESTIONS = "suggestions";
private static final String TAG_SID = "sid";
private static final String TAG_SUBJECT = "subject";

// suggestions JSONArray
JSONArray suggestions = null;

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.all_suggestions);

    // Hashmap for ListView
    suggestionsList = new ArrayList<HashMap<String, String>>();

    // Loading suggestions in Background Thread
    new LoadAllSuggestions().execute();

    // Get listview
    ListView lv = getListView();

    // on seleting single suggestion
    // launching Edit Suggestion Screen
    lv.setOnItemClickListener(new OnItemClickListener() {

        @Override
        public void onItemClick(AdapterView<?> parent, View view,
                int position, long id) {
            // getting values from selected ListItem
            String sid = ((TextView) view.findViewById(R.id.sid)).getText()
                    .toString();

            // Starting new intent
            Intent in = new Intent(getApplicationContext(),
                    EditSuggestionActivity.class);
            // sending sid to next activity
            in.putExtra(TAG_SID, sid);

            // starting new activity and expecting some response back
            startActivityForResult(in, 100);
        }
    });

}

// Response from Edit Suggestion Activity
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    super.onActivityResult(requestCode, resultCode, data);
    // if result code 100
    if (resultCode == 100) {
        // if result code 100 is received
        // means user edited/deleted suggestion
        // reload this screen again
        Intent intent = getIntent();
        finish();
        startActivity(intent);
    }

}

/**
 * Background Async Task to Load all suggestion by making HTTP Request
 * */
class LoadAllSuggestions extends AsyncTask<String, String, String> {

    /**
     * Before starting background thread Show Progress Dialog
     * */
    @Override
    protected void onPreExecute() {
        super.onPreExecute();
        pDialog = new ProgressDialog(AllSuggestionsActivity.this);
        pDialog.setMessage("Loading all suggestions. Please wait.......");
        pDialog.setIndeterminate(false);
        pDialog.setCancelable(false);
        pDialog.show();
    }

    /**
     * getting All suggestions from url
     * */
    @Override
    protected String doInBackground(String... args) {
        // Building Parameters
        List<NameValuePair> params = new ArrayList<NameValuePair>();
        // getting JSON string from URL
        JSONObject json = jParser.makeHttpRequest(url_all_suggestions,
                "GET", params);

        // Check your log cat for JSON reponse
        Log.d("All Suggestions: ", json.toString());

        try {
            // Checking for SUCCESS TAG
            int success = json.getInt(TAG_SUCCESS);

            if (success == 1) {
                // suggestions found
                // Getting Array of Suggestions
                suggestions = json.getJSONArray(TAG_SUGGESTIONS);

                // looping through All Suggestions
                for (int i = 0; i < suggestions.length(); i++) {
                    JSONObject c = suggestions.getJSONObject(i);

                    // Storing each json item in variable
                    String id = c.getString(TAG_SID);
                    String subject = c.getString(TAG_SUBJECT);

                    // creating new HashMap
                    HashMap<String, String> map = new HashMap<String, String>();

                    // adding each child node to HashMap key => value
                    map.put(TAG_SID, id);
                    map.put(TAG_SUBJECT, subject);

                    // adding HashList to ArrayList
                    suggestionsList.add(map);
                }
            } else {
                // no suggestions found
                Intent i = new Intent(getApplicationContext(),
                        MainScreenActivity.class);
                // Closing all previous activities
                i.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
                startActivity(i);
            }
        } catch (JSONException e) {
            e.printStackTrace();
        }

        return null;
    }

    /**
     * After completing background task Dismiss the progress dialog
     * **/
    @Override
    protected void onPostExecute(String file_url) {
        // dismiss the dialog after getting all suggestions
        pDialog.dismiss();
        // updating UI from Background Thread
        runOnUiThread(new Runnable() {
            @Override
            public void run() {
                /**
                 * Updating parsed JSON data into ListView
                 * */

                adapter = new SimpleAdapter(
                        AllSuggestionsActivity.this, suggestionsList,
                        R.layout.list_item, new String[] { TAG_SID,
                                TAG_SUBJECT }, new int[] { R.id.sid,
                                R.id.subject });
                // updating listview
                setListAdapter(adapter);

                /**
                 * Enabling Search Filter
                 * */
                inputSearch = (EditText) findViewById(R.id.inputSearch);

                inputSearch.addTextChangedListener(new TextWatcher() {

                    @Override
                    public void onTextChanged(CharSequence cs, int arg1, int arg2, int arg3) {
                        // When user changed the Text
                        AllSuggestionsActivity.this.adapter.getFilter().filter(cs);   
                    }

                    @Override
                    public void beforeTextChanged(CharSequence arg0, int arg1, int arg2,
                            int arg3) {
                        // TODO Auto-generated method stub

                    }

                    @Override
                    public void afterTextChanged(Editable arg0) {
                        // TODO Auto-generated method stub                          
                    }
                });
            }
        });
    }
}