mirror of
https://github.com/pezkuwichain/pezkuwi-wallet-android.git
synced 2026-05-01 18:07:57 +00:00
a294aa1a6b
Security hardened release: - Code obfuscation enabled (minifyEnabled=true, shrinkResources=true) - Sensitive files excluded (google-services.json, keystores) - Branch.io key moved to BuildConfig placeholder - Updated dependencies: OkHttp 4.12.0, Gson 2.10.1, BouncyCastle 1.77 - Comprehensive ProGuard rules for crypto wallet - Navigation 2.7.7, Lifecycle 2.7.0, ConstraintLayout 2.1.4
89 lines
3.3 KiB
XML
89 lines
3.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:clipToPadding="false"
|
|
android:orientation="vertical">
|
|
|
|
<io.novafoundation.nova.common.view.Toolbar
|
|
android:id="@+id/customNodeToolbar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
app:dividerVisible="false" />
|
|
|
|
<com.google.android.flexbox.FlexboxLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginHorizontal="16dp"
|
|
android:layout_marginTop="16dp"
|
|
app:flexDirection="row"
|
|
app:flexWrap="wrap">
|
|
|
|
<TextView
|
|
android:id="@+id/customNodeTitle"
|
|
style="@style/TextAppearance.NovaFoundation.Bold.Title2"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginEnd="10dp"
|
|
android:layout_marginBottom="8dp"
|
|
android:includeFontPadding="false"
|
|
android:textColor="@color/text_primary"
|
|
tools:text="Add custom node for" />
|
|
|
|
<io.novafoundation.nova.feature_account_api.view.ChainChipView
|
|
android:id="@+id/customNodeChain"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="8dp" />
|
|
|
|
</com.google.android.flexbox.FlexboxLayout>
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginHorizontal="16dp"
|
|
android:layout_marginTop="16dp"
|
|
android:layout_marginBottom="8dp"
|
|
android:text="@string/custom_node_url_title"
|
|
android:textColor="@color/text_secondary" />
|
|
|
|
<io.novafoundation.nova.common.view.InsertableInputField
|
|
android:id="@+id/customNodeUrlInput"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginHorizontal="16dp"
|
|
android:hint="@string/custom_node_url_hint" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginHorizontal="16dp"
|
|
android:layout_marginTop="16dp"
|
|
android:layout_marginBottom="8dp"
|
|
android:text="@string/custom_node_name_title"
|
|
android:textColor="@color/text_secondary" />
|
|
|
|
<io.novafoundation.nova.common.view.input.TextInputView
|
|
android:id="@+id/customNodeNameInput"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginHorizontal="16dp"
|
|
android:hint="@string/custom_node_name_hint" />
|
|
|
|
<Space
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1" />
|
|
|
|
<io.novafoundation.nova.common.view.PrimaryButton
|
|
android:id="@+id/customNodeApplyButton"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginHorizontal="16dp"
|
|
android:layout_marginBottom="24dp"
|
|
android:text="@string/custom_node_disabled_button_state" />
|
|
|
|
</LinearLayout>
|