diff options
| author | cyBerta <cyberta@riseup.net> | 2025-02-27 22:34:20 +0100 |
|---|---|---|
| committer | cyberta <cyberta@riseup.net> | 2025-02-28 10:49:48 +0000 |
| commit | 968f27e03b59a9bd750a109446f49ff25fa199e1 (patch) | |
| tree | 28c498d284fe2610986fcf575372ea9b114bc738 /app/src/main/res | |
| parent | c4487cc3ecbae7890a9582f1781ffbb962577863 (diff) | |
add support for QUIC for tunnel obfuscation
Diffstat (limited to 'app/src/main/res')
| -rw-r--r-- | app/src/main/res/layout/d_obfuscation_proxy.xml | 32 |
1 files changed, 24 insertions, 8 deletions
diff --git a/app/src/main/res/layout/d_obfuscation_proxy.xml b/app/src/main/res/layout/d_obfuscation_proxy.xml index 7b8fcaa7..03ffb61f 100644 --- a/app/src/main/res/layout/d_obfuscation_proxy.xml +++ b/app/src/main/res/layout/d_obfuscation_proxy.xml @@ -57,16 +57,32 @@ android:id="@+id/cert_field" android:layout_width="match_parent" android:layout_height="wrap_content"/> - <se.leap.bitmaskclient.base.views.IconSwitchEntry - android:id="@+id/kcp_switch" + + <TextView android:layout_width="match_parent" android:layout_height="wrap_content" - app:text="KCP" - app:subtitle="UDP based network protocol" - app:icon="@drawable/ic_multiple_stop" - > - - </se.leap.bitmaskclient.base.views.IconSwitchEntry> + android:text="Network protocol" + android:textStyle="bold" + android:paddingTop="@dimen/activity_margin" + android:textAppearance="@android:style/TextAppearance.DeviceDefault" /> + <androidx.appcompat.widget.LinearLayoutCompat + android:id="@+id/protocol_spinner_container" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_gravity="center_vertical" + android:gravity="center_vertical" + android:orientation="horizontal"> + <androidx.appcompat.widget.AppCompatImageView + android:layout_width="?android:attr/listPreferredItemHeightSmall" + android:layout_height="?android:attr/listPreferredItemHeightSmall" + android:src="@drawable/ic_multiple_stop" + android:padding="@dimen/stdpadding"/> + <androidx.appcompat.widget.AppCompatSpinner + android:id="@+id/protocol_spinner" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:tooltipText="select nework protocol"/> + </androidx.appcompat.widget.LinearLayoutCompat> <androidx.appcompat.widget.LinearLayoutCompat android:layout_width="wrap_content" |
