获取结帐按钮以导航到结帐页面

时间:2014-01-21 15:37:41

标签: java android eclipse android-layout import

我在Eclipse工作并且在我的任务中遇到了一定的步骤,所以任何帮助都会受到影响,因为我实际上不知道该怎么做,即使我意识到它可能是多么简单......

我有一个购物应用程序,我创建了CheckoutActivity ...现在......当用户点击CartActivity中的结帐按钮时,它需要启动。

我需要在我的CartActivity的ocCreate方法中添加代码(我将在下面提供),它指定Checkout按钮的监听器。然后我需要在onCreate中定义一个名为btn的按钮变量。然后,我需要使用您在activity_cart.xml布局中指定的id从视图中分配button元素。

我到目前为止所有这一切......我不知道该怎么做......

btn.setOnClickListener(new OnClickListener() {
        public void onClick(final View v) {
            //I cant figure out how to get it to start the CheckoutActivity
        }
    });

万一你需要查看我到目前为止的代码...这是我的cartActivty的代码

    package uk.ac.uk.st265.shopper;

    import java.text.DecimalFormat;
    import java.util.List;
    import java.util.ResourceBundle.Control;

    import android.os.Bundle;
    import android.app.Activity;
    import android.content.Context;
    import android.content.Intent;
    import android.view.LayoutInflater;
    import android.view.Menu;
    import android.view.MenuItem;
    import android.view.View;
    import android.view.ViewGroup;
    import android.widget.BaseAdapter;
    import android.widget.Button;
    import android.widget.ImageView;
    import android.widget.ListView;
    import android.widget.TextView;
    import android.support.v4.app.NavUtils;

public class CartActivity extends Activity {

    CartListAdapter adapter;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_cart);

        TextView text = (TextView) findViewById(R.id.total_price); // its not in
                                                                    // XML
        DecimalFormat df = new DecimalFormat("#.00");
        text.setText("£"
                + df.format(((ShopperApp) getApplication()).getCartTotal()));

        adapter = new CartListAdapter(this);
        ListView cartList = (ListView) findViewById(R.id.cart_list);
        adapter.setItemList(((ShopperApp) getApplication()).cart);
        cartList.setAdapter(adapter);

        // Show the Up button in the action bar.
        setupActionBar();

        //work5ass2part6

        //btn.setOnClickListener(new OnClickListener() {
            //public void onClick(final View v) {
                // I cant figure out how to get it to start the CheckoutActivity
            //}
        //});
    }


    /**
     * Set up the {@link android.app.ActionBar}.
     */
    private void setupActionBar() {

        getActionBar().setDisplayHomeAsUpEnabled(true);

    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.cart, menu);
        return true;
    }

    public class CartListAdapter extends BaseAdapter {
        private final Context context;
        private List<Product> itemList;

        public CartListAdapter(Context c) {
            context = c;
        }

        public void setItemList(List<Product> itemList) {
            // this.itemList = itemList;

        }

        @Override
        public int getCount() {
            // TODO Auto-generated method stub
            return 0;
        }

        @Override
        public Object getItem(int arg0) {
            // TODO Auto-generated method stub
            return null;
        }

        @Override
        public long getItemId(int arg0) {
            // TODO Auto-generated method stub
            return 0;
        }

        @Override
        public View getView(int position, View convertView, ViewGroup parent) {
            View cell = convertView;

            if (cell == null) {
                // get layout from mobile xml
                LayoutInflater inflater = ((Activity) context)
                        .getLayoutInflater();
                cell = inflater.inflate(R.layout.adapter_cart, parent, false);
            }

            Product p = itemList.get(position);

            // set value into text view according to position
            TextView textView = (TextView) cell
                    .findViewById(R.id.product_title);
            textView.setText(p.getProductName());

            textView = (TextView) cell.findViewById(R.id.product_info);
            textView.setText("Price " + p.getPrice());

            // set value into image view according to position
            ImageView imgView = (ImageView) cell
                    .findViewById(R.id.product_image);
            // clear the image
            imgView.setImageDrawable(null);
            // and load from the network
            p.loadImage(imgView, 54, 54);

            return cell;

        }

        public List<Product> getItemList() {
            return itemList;

        }

    }

    @Override
    public boolean onOptionsItemSelected(MenuItem item) {
        switch (item.getItemId()) {
        case android.R.id.home:
            // This ID represents the Home or Up button. In the case of this
            // activity, the Up button is shown. Use NavUtils to allow users
            // to navigate up one level in the application structure. For
            // more details, see the Navigation pattern on Android Design:
            //
            // http://developer.android.com/design/patterns/navigation.html#up-vs-back
            //
        case R.id.show_cart:
            // Create the intent for the cart activity
            Intent intent = new Intent(getApplicationContext(),
                    CartActivity.class);
            startActivity(intent);
            NavUtils.navigateUpFromSameTask(this);
            return true;
        }
        return super.onOptionsItemSelected(item);
    }

}

这是我到目前为止在CheckoutActivity上的代码:

    package uk.ac.uk.st265.shopper;

import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
import android.view.MenuItem;
import android.support.v4.app.NavUtils;

public class CheckoutActivity extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_checkout);
        // Show the Up button in the action bar.
        setupActionBar();
    }

    /**
     * Set up the {@link android.app.ActionBar}.
     */
    private void setupActionBar() {

        getActionBar().setDisplayHomeAsUpEnabled(true);

    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.checkout, menu);
        return true;
    }

    @Override
    public boolean onOptionsItemSelected(MenuItem item) {
        switch (item.getItemId()) {
        case android.R.id.home:
            // This ID represents the Home or Up button. In the case of this
            // activity, the Up button is shown. Use NavUtils to allow users
            // to navigate up one level in the application structure. For
            // more details, see the Navigation pattern on Android Design:
            //
            // http://developer.android.com/design/patterns/navigation.html#up-vs-back
            //
            NavUtils.navigateUpFromSameTask(this);
            return true;
        }
        return super.onOptionsItemSelected(item);
    }

}

1 个答案:

答案 0 :(得分:1)

Intent myIntent = new Intent(CurrentActivity.this, NextActivity.class);
//  myIntent.putExtra("key", value); //if you want to pass parameter
CurrentActivity.this.startActivity(myIntent);