mirror of
https://github.com/yggdrasil-network/yggdrasil-android.git
synced 2025-04-29 06:35:08 +03:00

* Changed app icon from default to Yggdrasil leaf. * Added workaround for DNS-reslver and fix for unmetered networks. * Added DNS configuration functionality. * Changed DNS configuration UI. Disabled DNS config by default. Added DNS fix for Chrome-based browsers.
46 lines
No EOL
1.9 KiB
XML
46 lines
No EOL
1.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:id="@+id/tableRow"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<TextView
|
|
android:id="@+id/addressValue"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="18dp"
|
|
android:layout_marginTop="4dp"
|
|
android:layout_marginEnd="18dp"
|
|
android:layout_marginBottom="12dp"
|
|
android:ellipsize="end"
|
|
android:singleLine="true"
|
|
android:text=""
|
|
android:textColor="?attr/textDefault"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintEnd_toStartOf="@+id/deletePeerButton"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toTopOf="@+id/space" />
|
|
|
|
<Space
|
|
android:id="@+id/space"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
app:layout_constraintBottom_toTopOf="@+id/deletePeerButton"
|
|
app:layout_constraintEnd_toStartOf="@+id/deletePeerButton"
|
|
app:layout_constraintStart_toEndOf="@+id/addressValue"
|
|
app:layout_constraintTop_toTopOf="@+id/deletePeerButton" />
|
|
|
|
<ImageButton
|
|
android:id="@+id/deletePeerButton"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="8dp"
|
|
android:layout_marginEnd="4dp"
|
|
android:layout_marginBottom="10dp"
|
|
android:background="@android:color/transparent"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
app:srcCompat="@drawable/ic_baseline_remove_circle_24" />
|
|
</androidx.constraintlayout.widget.ConstraintLayout> |