gpt4 book ai didi

android - 如何通过在android教程应用程序中单击 ListView 来全屏打开图像

转载 作者:太空狗 更新时间:2023-10-29 12:40:22 25 4
gpt4 key购买 nike

以下是我目前得到的。该错误是每当我单击 ListItem 时都会发生以下错误

Unfortunately app has stopped working

ListViewAdapter.class

public class ListViewAdapter extends BaseAdapter {

protected static long[] itemVie;
// Declare Variables

Context context;

LayoutInflater inflater;


ArrayList<HashMap<String, String>> data;


ImageLoader imageLoader;


HashMap<String, String> resulta = new HashMap<String, String>();



public ListViewAdapter(Context context,


ArrayList<HashMap<String, String>> arraylist) {


this.context = context;
data = arraylist;


imageLoader = new ImageLoader(context);


}



@Override


public int getCount() {


return data.size();
}

@Override


public Object getItem(int position) {
return null;
}

@Override


public long getItemId(int position) {


return 0;
}

@SuppressLint("ViewHolder")


public View getView(final int position, View convertView, ViewGroup parent) {
// Declare Variables


TextView albname;


ImageView portimages;



inflater = (LayoutInflater) context
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);



View itemVie = inflater.inflate(R.layout.list_item, parent, false);
// Get the position




resulta = data.get(position);
// Locate the TextViews in listview_item.xml


albname = (TextView) itemVie.findViewById(R.id.name);


portimages = (ImageView) itemVie.findViewById(R.id.portImg);


albname.setText(resulta.get(Portfolio.TAG_TITLE));


imageLoader.DisplayImage(resulta.get(Portfolio.TAG_IMAGE), portimages);





// Capture ListView item click
itemVie.setOnClickListener(new OnClickListener() {

@Override
public void onClick(View arg0) {


resulta = data.get(position);

Intent intent = new Intent(context, FullScreenImage.class);



intent.putExtra("albname", resulta.get(Portfolio.TAG_TITLE));
intent.putExtra("portimages",resulta.get(Portfolio.TAG_IMAGE));


context.startActivity(intent);


}
});


return itemVie;
}
}

FullScreenImage.class

package com.example.truzzapp;
public class FullScreenImage extends Activity implements OnItemSelectedListener {

ImageView image;
TextView txt;
String port_name;
String port_image;
ProgressDialog pDialog;
ImageLoader imageLoader = new ImageLoader(this);
protected void onCreate(Bundle savedInstanceState) {
setContentView(R.layout.fullimage);

Intent i = getIntent();

port_name = i.getStringExtra("albname");

port_image = i.getStringExtra("portimages");

  txt = (TextView) findViewById(R.id.PortHeading);
image = (ImageView) findViewById(R.id.portFullImage);



txt.setText(port_name);
imageLoader.DisplayImage(port_image, image);

}


@Override
public void onItemSelected(AdapterView<?> arg0, View arg1, int arg2,
long arg3) {
// TODO Auto-generated method stub

}

@Override
public void onNothingSelected(AdapterView<?> arg0) {
// TODO Auto-generated method stub

}
}

Logcat 错误

12-02 13:42:45.725: E/AndroidRuntime(1129): FATAL EXCEPTION: main
12-02 13:42:45.725: E/AndroidRuntime(1129): android.app.SuperNotCalledException: Activity {com.example.truzzapp/com.example.truzzapp.FullScreenImage} did not call through to super.onCreate()
12-02 13:42:45.725: E/AndroidRuntime(1129): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2025)
12-02 13:42:45.725: E/AndroidRuntime(1129): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2084)
12-02 13:42:45.725: E/AndroidRuntime(1129): at android.app.ActivityThread.access$600(ActivityThread.java:130)
12-02 13:42:45.725: E/AndroidRuntime(1129): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1195)
12-02 13:42:45.725: E/AndroidRuntime(1129): at android.os.Handler.dispatchMessage(Handler.java:99)
12-02 13:42:45.725: E/AndroidRuntime(1129): at android.os.Looper.loop(Looper.java:137)
12-02 13:42:45.725: E/AndroidRuntime(1129): at android.app.ActivityThread.main(ActivityThread.java:4745)
12-02 13:42:45.725: E/AndroidRuntime(1129): at java.lang.reflect.Method.invokeNative(Native Method)
12-02 13:42:45.725: E/AndroidRuntime(1129): at java.lang.reflect.Method.invoke(Method.java:511)
12-02 13:42:45.725: E/AndroidRuntime(1129): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:786)
12-02 13:42:45.725: E/AndroidRuntime(1129): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:553)
12-02 13:42:45.725: E/AndroidRuntime(1129): at dalvik.system.NativeStart.main(Native Method)

最佳答案

注意 logcat :没有调用 super.onCreate()

您忘记在 setContentView 之前调用 super.onCreate(savedInstanceState);

关于android - 如何通过在android教程应用程序中单击 ListView 来全屏打开图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27244557/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com