> ## Documentation Index
> Fetch the complete documentation index at: https://razorpay-881012b3.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Customisation Options

> Customise the Affordability Widget on your Android App.

<div style={{display:"flex",flexWrap:"wrap",alignItems:"center",gap:"0.35rem 0.9rem",border:"1px solid rgba(128,128,128,0.28)",borderRadius:"0.5rem",padding:"0.45rem 0.75rem",margin:"0 0 1.25rem",fontSize:"0.875rem"}}>
  <span style={{fontWeight:600}}>Available in</span>
  <span>🇮🇳 India</span>
</div>

After you successfully integrate the widget on your Android app, create a JSON Object as per your customisation requirements and add it as an additional parameter in the `loadwidget()` method. Check all the [customisation options](/docs/payments/payment-gateway/emi²/widget/native-web/customise) available.

<CodeGroup>
  ```java Java theme={null}
  JSONObject widgetConfig = new JSONObject(
      "{" +
          "\"key\": \"YOUR_KEY_ID\"," + // Enter your Live Key ID generated from the Dashboard
          "\"amount\": 400000," +
          "\"currency\": \"INR\"," +
          "\"display\": {" +
              "\"offers\": false" +
          "}" +
      "}"
  );

  widget.render(this, widgetConfig);
  ```

  ```kotlin Kotlin theme={null}
  val widgetConfig = JSONObject(
      """
      {
          "key": "YOUR_KEY_ID", // Enter your Live Key ID generated from the Dashboard
          "amount": 400000,
          "currency": "INR",
          "display": {
              "offers": false
          }
      }
      """.trimIndent()
  )

  widget.render(this, widgetConfig)
  ```
</CodeGroup>

### Related Information

* [FAQs](/docs/payments/payment-gateway/emi²/faqs)
* [About Affordability Widget](/docs/payments/payment-gateway/emi²/widget)
