我想在listview的每一行中添加两个按钮。虽然只使用一个Activity意味着在我的代码中我有一个MainActivity.java及其布局(activity_main.xml)和一个额外的布局(list_item.xml),每行中都有项目(Textviews)但是当我在一个中添加两个按钮时list_item.xml并在MainActivity中初始化并在其上添加列表器,它向我显示了一个在下面共享的异常。帮助我解决我的问题,任何形式的帮助都将受到高度赞赏。
MainActivity.java
public class MainActivity extends ActionBarActivity
{
String myJSON ;
String id;
private static final String TAG_RESULTS="result";
private static final String TAG_ID = "id";
private static final String TAG_NAME = "name";
private static final String TAG_ADD ="address";
JSONArray peoples = null;
ArrayList <HashMap <String, String> > personList;
ListView list;
TextView quant;
int count=0;
Button b_plus,b_minus;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
list = (ListView) findViewById(R.id.listView);
personList = new ArrayList<HashMap<String,String>>();
quant=(TextView)findViewById(R.id.quantity);
b_plus=(Button)findViewById(R.id.ib_plus);
b_minus=(Button)findViewById(R.id.ib_minus);
b_plus.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
count++;
quant.setText(Integer.toString(count));
}
});
b_minus.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
count--;
quant.setText(Integer.toString(count));
}
});
getData();
}
protected void showList(){
try {
JSONObject jsonObj = new JSONObject(myJSON);
peoples = jsonObj.getJSONArray(TAG_RESULTS);
for(int i=0;i<peoples.length();i++){
JSONObject c = peoples.getJSONObject(i);
id = c.getString(TAG_ID);
String name = c.getString(TAG_NAME);
String address = c.getString(TAG_ADD);
HashMap<String,String> persons = new HashMap<String,String>();
persons.put(TAG_ID,id);
persons.put(TAG_NAME,name);
persons.put(TAG_ADD,address);
personList.add(persons);
}
final ListAdapter adapter = new SimpleAdapter
(
MainActivity.this, personList, R.layout.list_item,
new String[]{TAG_ID,TAG_NAME,TAG_ADD},
new int[]{R.id.id, R.id.name, R.id.address}
);
list.setAdapter(adapter);
list.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> adapterView, View view, int i, long l) {
switch(i)
{
case 0 :
Intent appInfo = new Intent(MainActivity.this, MainActivity2.class);
startActivity(appInfo);
break;
case 1 :
Intent ap = new Intent(MainActivity.this, MainActivity3.class);
startActivity(ap);
break;
case 2 :
Intent Info = new Intent(MainActivity.this, MainActivity2.class);
startActivity(Info);
break;
}}
});
} catch (JSONException e) {
e.printStackTrace();
}
}
public void getData(){
class GetDataJSON extends AsyncTask<String, Void, String>{
@Override
protected String doInBackground(String... params) {
DefaultHttpClient httpclient = new DefaultHttpClient(new BasicHttpParams());
HttpPost httppost = new HttpPost("http://10.0.2.2/in.php");
// Depends on your web service
httppost.setHeader("Content-type", "application/json");
InputStream inputStream = null;
String result = null;
try {
HttpResponse response = httpclient.execute(httppost);
HttpEntity entity = response.getEntity();
inputStream = entity.getContent();
// json is UTF-8 by default
BufferedReader reader = new BufferedReader(new InputStreamReader(inputStream, "UTF-8"), 8);
StringBuilder sb = new StringBuilder();
String line = null;
while ((line = reader.readLine()) != null)
{
sb.append(line + "\n");
}
result = sb.toString();
} catch (Exception e) {
// Oops
}
finally {
try{if(inputStream != null)inputStream.close();}catch(Exception squish){}
}
return result;
}
@Override
protected void onPostExecute(String result){
myJSON=result;
showList();
}
}
GetDataJSON g = new GetDataJSON();
g.execute();
} }
activity_main.xml中
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
android:layout_height="match_parent" android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:orientation="vertical"
android:background="#ff3c3f41"
android:paddingBottom="@dimen/activity_vertical_margin" tools:context=".MainActivity">
<ListView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/listView"
/>
</LinearLayout>
list_item.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="10dp"
android:paddingLeft="10dp"
android:paddingRight="10dp" >
<TextView
android:id="@+id/id"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:paddingBottom="2dip"
android:paddingTop="6dip"
android:textColor="#fff9f9f9"
android:textStyle="bold" />
<TextView
android:id="@+id/name"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:paddingBottom="2dip"
android:textColor="#fff9f9f9"
android:textStyle="bold"/>
<TextView
android:id="@+id/address"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="left"
android:textColor="#fff9f9f9"
android:textStyle="bold" />
<TextView
android:id="@+id/quantity"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="left"
android:textColor="#fff9f9f9"
android:textStyle="bold" />
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="166dp"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:padding="10dp"
android:paddingLeft="10dp"
android:paddingRight="10dp" >
<ImageButton
android:layout_width="58dp"
android:layout_height="52dp"
android:src="@drawable/plus"
android:layout_gravity="start"
android:id="@+id/ib_plus" />
<ImageButton
android:layout_width="58dp"
android:layout_height="52dp"
android:src="@drawable/minus"
android:id="@+id/ib_minus"
android:layout_gravity="center_horizontal"
android:layout_alignBottom="@+id/ib_plus"
android:layout_alignParentRight="true"
android:layout_alignParentEnd="true"
android:layout_alignTop="@+id/ib_plus" />
</RelativeLayout>
logcat的:
Caused by: java.lang.NullPointerException: Attempt to invoke virtual method 'void android.widget.Button.setOnClickListener(android.view.View$OnClickListener)' on a null object reference
at com.example.abdul.zx.MainActivity.onCreate(MainActivity.java:62)
答案 0 :(得分:0)
您的按钮未在R.layout.activity_main
中定义,因此findViewById
将返回null
,因为它们不存在。
quant
也是null,原因相同。
您必须在SimpleAdapter
课程中定义按钮,因为它们位于list_item.xml
。 (假设SimpleAdapter
膨胀list_item.xml
)
答案 1 :(得分:0)
您需要首先将list_item布局充气为视图。然后,您需要通过view.findViewById()初始化ImageButtons。现在,您正在尝试使用除了在onCreate中设置的布局之外的布局的ImageButton。或者另一种方法是在适配器内设置onClick方法。
答案 2 :(得分:0)
问题是list_item.xml
对ListView
中的每一行数据都要onCreate()
。在getView()
中您尝试获取按钮视图的位置,尚未创建它们。要为每个按钮设置侦听器,您需要创建自定义适配器类。然后,您将使用VARNAME=('var' 'name') # no space between the variable name and value
方法设置侦听器。
答案 3 :(得分:0)
您必须使您的适配器更复杂,因为没有一个按钮和文本字段。伪代码如下面的解决方案。用以下内容替换创建适配器的行:
final ListAdapter adapter = new SimpleAdapter
(MainActivity.this, personList, R.layout.list_item,
new String[]{TAG_ID,TAG_NAME,TAG_ADD},
new int[]{R.id.id, R.id.name, R.id.address}) {
public View getView(int position, View convertView, ViewGroup parent) {
View view = super.getView(position, convertView, parent);
final TextView quant=(TextView)view.findViewById(R.id.quantity);
final ImageButton b_plus=(ImageButton)view.findViewById(R.id.ib_plus);
final ImageButton b_minus=(ImageButton)view.findViewById(R.id.ib_minus);
b_plus.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
count++;
quant.setText(Integer.toString(count));
}
});
b_minus.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
count--;
quant.setText(Integer.toString(count));
}
});
return view;
}
};
从您活动的其他位置移除与quant
,b_minus
,b_plus
相关的所有内容
答案 4 :(得分:0)
我相信您可能会在错误的地方执行这些步骤:
quant=(TextView)findViewById(R.id.quantity);
b_plus=(Button)findViewById(R.id.ib_plus);
b_minus=(Button)findViewById(R.id.ib_minus);
我认为发生的事情是代码在activity_main.xml中搜索它们,但因为它们不存在,所以它们最终为空。因此,您将看到例外情况。
由于TextView和Buttons与每个ListView项相关,因此应该进行初始化。我看到你正在使用我不熟悉的SimpleAdaptor。但是如果你为ListView创建自定义适配器,那么你可以初始化适配器的getView()中的TextView和Buttons,如下所示:Custom Adapter for List View。
您也可以在那里设置按钮侦听器,它将为您提供单击某个按钮的ListItem的位置。