- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已将以下代码用于带有自定义适配器的 ListView。代码对我来说工作正常,
在 ListView 中,每个 ListView 行中都有一个复选框、TextView、ImageView 和 Button。数据将通过 HttpPost 方法获取并分配到 ListView 的每一行中,没有问题。
我想获取在 ListView 中选中的所有复选框,单击主 Activity 的按钮。
我已经阅读了很多文章和例子,但无法得到正确的答案。
代码:MainActivity.java 文件,单击哪个按钮并将 Toast 设置为“单击按钮”。
package com.example.listviewimageloadingexample;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
import android.app.Activity;
import android.app.ProgressDialog;
import android.content.Intent;
import android.os.AsyncTask;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.CheckBox;
import android.widget.LinearLayout;
import android.widget.ListView;
import android.widget.Toast;
public class MainActivity extends Activity implements OnClickListener {
// Declare Variables
JSONObject jsonobject;
JSONArray jsonarray;
ListView listview;
ListViewAdapter adapter;
ProgressDialog mProgressDialog;
ArrayList<HashMap<String, String>> arraylist;
static String RANK = "rank";
static String COUNTRY = "country";
static String POPULATION = "population";
static String FLAG = "flag";
Button processedAllBtn;
CheckBox processAll;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// Get the view from listview_main.xml
setContentView(R.layout.listview_main);
processedAllBtn=(Button) findViewById(R.id.btnProcessedAllAbove);
processedAllBtn.setOnClickListener(this);
// Locate the listview in listview_main.xml
listview = (ListView) findViewById(R.id.listview);
Object obj=(ListViewAdapter)getLastNonConfigurationInstance();
if(obj==null)
{
// Execute DownloadJSON AsyncTask
new DownloadJSON().execute();
}
else
{
adapter=(ListViewAdapter)obj;
setListView();
}
}
@Override
public void onClick(View arg0) {
switch(arg0.getId())
{
case R.id.btnProcessedAllAbove:
//Toast.makeText(getApplicationContext(), "button is clicked "+arg0.getId(), Toast.LENGTH_SHORT).show();
break;
}
}
// DownloadJSON AsyncTask
private class DownloadJSON extends AsyncTask<Void, Void, Void> {
@Override
protected void onPreExecute() {
super.onPreExecute();
// Create a progressdialog
mProgressDialog = new ProgressDialog(MainActivity.this);
// Set progressdialog title
mProgressDialog.setTitle("Android JSON Parse Tutorial");
// Set progressdialog message
mProgressDialog.setMessage("Loading...");
mProgressDialog.setIndeterminate(false);
// Show progressdialog
mProgressDialog.show();
}
@Override
protected Void doInBackground(Void... params) {
// Create an array
arraylist = new ArrayList<HashMap<String, String>>();
// Retrieve JSON Objects from the given URL address
jsonobject = JSONfunctions.getJSONfromURL("WEBSERVICE_URL");
try {
// Locate the array name in JSON
//jsonarray = jsonobject.getJSONArray("worldpopulation");
jsonarray = jsonobject.getJSONArray("students");
String flag="";
for (int i = 0; i < jsonarray.length(); i++) {
HashMap<String, String> map = new HashMap<String, String>();
JSONObject jsonobject = jsonarray.getJSONObject(i);
JSONObject student_object = jsonobject.getJSONObject("students");
// Retrive JSON Objects
map.put("rank", student_object.getString("id"));
map.put("country", student_object.getString("name"));
map.put("population", student_object.getString("roll_number"));
flag = student_object.getString("student_photo");
flag = flag.replace(" ", "%20");
map.put("flag", "WEBSERVICE_URL"+flag);
// Set the JSON Objects into the array
arraylist.add(map);
}
} catch (JSONException e) {
Log.e("Error", e.getMessage());
e.printStackTrace();
}
return null;
}
@Override
protected void onPostExecute(Void args) {
setListView();
// Close the progressdialog
mProgressDialog.dismiss();
}
}
@Override
public Object onRetainNonConfigurationInstance() {
return adapter;
}
public void setListView()
{
if(adapter==null)
{
// Pass the results into ListViewAdapter.java
adapter = new ListViewAdapter(MainActivity.this, arraylist);
}
// Set the adapter to the ListView
listview.setAdapter(adapter);
}
}
代码:ListAdapter.java 文件
package com.example.listviewimageloadingexample;
import java.util.ArrayList;
import java.util.HashMap;
import android.content.Context;
import android.content.Intent;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.Button;
import android.widget.CheckBox;
import android.widget.CompoundButton;
import android.widget.ImageView;
import android.widget.TextView;
import android.widget.Toast;
public class ListViewAdapter extends BaseAdapter {
// Declare Variables
Context context;
LayoutInflater inflater;
ArrayList<HashMap<String, String>> data;
ImageLoader imageLoader;
HashMap<String, String> resultp = new HashMap<String, String>();
boolean[] itemChecked;
public ListViewAdapter(Context context, ArrayList<HashMap<String, String>> arraylist)
{
super();
this.context = context;
data = arraylist;
imageLoader = new ImageLoader(context);
itemChecked = new boolean[data.size()];
}
@Override
public int getCount() {
return data.size();
}
@Override
public Object getItem(int position) {
return data.get(position);
}
@Override
public long getItemId(int position) {
return 0;
}
public class ViewHolder
{
TextView rank;
TextView country;
TextView population;
Button processedBtn;
ImageView flag;
CheckBox processedCheckBox;
}
@Override
public View getView(final int position, View convertView, ViewGroup parent)
{
View view=convertView;
final ViewHolder viewHolder;
LayoutInflater inflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
if(view == null)
{
view = inflater.inflate(R.layout.listview_item, null);
viewHolder= new ViewHolder();
// Locate the TextViews in listview_item.xml
viewHolder.rank = (TextView) view.findViewById(R.id.rank);
viewHolder.country = (TextView) view.findViewById(R.id.country);
viewHolder.population = (TextView) view.findViewById(R.id.population);
// Locate the ImageView in listview_item.xml
viewHolder.flag = (ImageView) view.findViewById(R.id.flag);
viewHolder.processedBtn = (Button) view.findViewById(R.id.btnProcessed);
viewHolder.processedCheckBox = (CheckBox)view.findViewById(R.id.processedCheckBox);
view.setTag(viewHolder);
}
else
{
viewHolder=(ViewHolder)view.getTag();
}
// Get the position
resultp = data.get(position);
// Capture position and set results to the TextViews
viewHolder.rank.setText(resultp.get(MainActivity.RANK));
viewHolder.country.setText(resultp.get(MainActivity.COUNTRY));
viewHolder.population.setText(resultp.get(MainActivity.POPULATION));
// Capture position and set results to the ImageView
// Passes flag images URL into ImageLoader.class
imageLoader.DisplayImage(resultp.get(MainActivity.FLAG), viewHolder.flag);
viewHolder.processedBtn.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View arg0) {
// Get the position
resultp = data.get(position);
Intent intent = new Intent(context, SingleItemView.class);
// Pass all data rank
intent.putExtra("rank", resultp.get(MainActivity.RANK));
// Pass all data country
intent.putExtra("country", resultp.get(MainActivity.COUNTRY));
// Pass all data population
intent.putExtra("population",resultp.get(MainActivity.POPULATION));
// Pass all data flag
intent.putExtra("flag", resultp.get(MainActivity.FLAG));
// Start SingleItemView Class
context.startActivity(intent);
}
});
viewHolder.processedCheckBox.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener()
{
@Override
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
// TODO Auto-generated method stub
itemChecked[position]=(!itemChecked[position]);
viewHolder.processedCheckBox.setChecked(itemChecked[position]);
}
});
return view;
}
}
代码:listitem.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<CheckBox
android:id="@+id/processedCheckBox"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical|center_horizontal"
android:saveEnabled="false" />
<ImageView
android:id="@+id/flag"
android:layout_width="80dp"
android:layout_height="80dp"
android:layout_gravity="center_vertical|center_horizontal"
android:padding="5dp"/>
<TextView
android:id="@+id/rank"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical|center_horizontal"
android:text="id"
android:textStyle="bold"
android:visibility="gone" />
<TextView
android:id="@+id/country"
android:layout_width="100dp"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical|center_horizontal"
android:text="Name"
android:textStyle="bold" />
<TextView
android:id="@+id/population"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical|center_horizontal"
android:text="Roll_No"
android:textStyle="bold"
android:visibility="gone" />
<Button
android:id="@+id/btnProcessed"
android:layout_width="90dp"
android:layout_height="30dp"
android:textSize="15sp"
android:layout_gravity="center_vertical|center_horizontal"
android:background="@drawable/buttonshape"
android:text="Processed"
android:textColor="#FFFFFF"
android:layout_marginLeft="2dp" />
</LinearLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:orientation="vertical" >
<View
android:layout_width="fill_parent"
android:layout_height="1dp"
android:background="#000000" />
</LinearLayout>
</LinearLayout>
代码:listview_main.xml
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/ScrollView1"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<CheckBox
android:id="@+id/checkAllAbove"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Select All" />
<Button
android:id="@+id/btnProcessedAllAbove"
android:layout_width="90dp"
android:layout_height="30dp"
android:layout_marginLeft="119dp"
android:background="@drawable/buttonshape"
android:text="Processed"
android:textColor="#FFFFFF"
android:textSize="15sp" />
</LinearLayout>
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="#000000" />
<ListView
android:id="@+id/listview"
android:layout_width="match_parent"
android:layout_height="320dp" />
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="#000000" />
</LinearLayout>
</ScrollView>
最佳答案
有一个复选框 getTag() 方法,将它与一些逻辑一起使用,你应该没问题
参见:http://amitandroid.blogspot.in/2013/03/android-listview-with-checkbox-and.html
关于java - 安卓 : Determine which checkbox is checked in listview from the Main activity button,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24631952/
我遇到过这个 html: 上面的html和这个有什么区别: 最佳答案 来自MDN page on the tag : 对于 type 的属性标签,可能的值是: 提交:按钮将表单数据提交给服务器
Button button= (Button) findViewbyID(R.id.button); 和 Button button = new Button(this); 有什么区别? 最佳答案 有
我是一名优秀的程序员,十分优秀!