Skip to content

How to set the text based on the position #168

@Chandrakala14

Description

@Chandrakala14

HI,

I need to replace the card data based on the position,

Here I am able to get the position and unable to set the data based on the position

Below is my code :

 public InfoView(Context mContext, Info info, Activity activity) {
        mContext = mContext;
        mInfo = info;
        mActivity = activity;

    }


    @View(R.id.layout)
    public static LinearLayout layout;


    @Resolve
    private void onResolved() {

        Type.setText(mInfo.getType());
//        DispName.setText(mInfo.getDisplayName());
//        Source.setText(mInfo.getSource());
//        Destin.setText(mInfo.getDestination());
        JourneyDate.setText(String.valueOf(mInfo.getJourneydate()));
        Arrival_Time.setText(mInfo.getArrivalTime());
        Depttime.setText(mInfo.getDepartureTime());
        JourneyType.setText(String.valueOf(mInfo.getJourneyType()));
//        Duration.setText(mInfo.getDuration());
        Fare.setText(String.valueOf(mInfo.getNetFares()));
        Address.setText(mInfo.getAddress());
        Ratings.setText(mInfo.getRating());


        layout.setOnClickListener(new android.view.View.OnClickListener() {
            @Override
            public void onClick(android.view.View view) {

                Log.i("dataaa ", "Onclicked");
                Log.i("dataaa ", mInfo.getType());
                Log.i("dataaa ", mChildPosition + " test " + mParentPosition);
                String id = String.valueOf(mParentPosition + "" + mChildPosition);

                Toast.makeText(mActivity, id, Toast.LENGTH_SHORT).show();

                String type = mInfo.getType();

                try {
                    Intent intent = new Intent();
                    intent.getIntExtra("c1position", 0);
                } catch (Exception e) {
                    e.printStackTrace();
                }

Please help me to solve this.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions