在我的应用程序中,我有一个菜单,其中包含ListView中允许用户上传文件的文件列表(系统将读取文件中的数据,然后发送到数据库服务器)。 上传后,我想告诉他们该文件是使用符号或标记或任何内容上传的。每当用户进入该菜单时,标记仍然会出现。
所以,我想知道如何在ListView上的上传文件中创建标记。 非常感谢你。
编辑:我使用以下代码将文件中的数据发送到服务器。
public void sendData(ArrayList<NameValuePair> data)
throws ClientProtocolException, IOException {
HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost("my path/file.php");
httppost.setEntity(new UrlEncodedFormEntity(data));
}