Package net.gini.android.bank.sdk.capture.digitalinvoice.details

Contains the Activity and Fragments used for the return assistant's Line Item Details Screen.

Screen API

The net.gini.android.bank.sdk.capture.digitalinvoice.details.LineItemDetailsActivity is launched by the net.gini.android.bank.sdk.capture.digitalinvoice.DigitalInvoiceActivity when the user tapps on a line item to edit it. It displays the line item and allows editing it.

Component API

To use the Component API you have to include the net.gini.android.vision.digitalinvoice.details.LineItemDetailsFragment in an Activity in your app (a dedicated Activity is recommended). To receive events from the Fragment your Activity must implement the net.gini.android.vision.digitalinvoice.details.LineItemDetailsFragmentListener interface.

Types

Link copied to clipboard
public final class LineItemDetailsActivity extends AppCompatActivity implements LineItemDetailsFragmentListener

When you use the Screen API, the LineItemDetailsActivity displays a line item to be edited by the user. The user can modify the following:

Link copied to clipboard
public final class LineItemDetailsFragment extends Fragment implements LineItemDetailsScreenContract.View, LineItemDetailsFragmentInterface

When you use the Component API the LineItemDetailsFragment displays a line item to be edited by the user. The user can modify the following:

Link copied to clipboard
public interface LineItemDetailsFragmentInterface

Public API of the LineItemDetailsFragment.

Link copied to clipboard
public interface LineItemDetailsFragmentListener

Interface used by the LineItemDetailsFragment to dispatch events to the hosting Activity.