Compare commits

..

1 Commits

3 changed files with 4 additions and 7 deletions

View File

@@ -730,7 +730,7 @@ namespace Kp2aAutofillParser
{
public List<TField> InputFields { get; set; } = new List<TField>();
public string PackageId { get; set; } = null;
public string? PackageId { get; set; } = null;
public string WebDomain { get; set; } = null;
}

View File

@@ -69,7 +69,6 @@
android:layout_height="wrap_content"
android:orientation="vertical">
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<com.google.android.material.textfield.TextInputLayout
@@ -83,7 +82,7 @@
android:layout_height="wrap_content"
android:singleLine="true"
android:inputType="textPassword"
android:hint="@string/hint_pass"
android:hint="password"
android:importantForAccessibility="no"/>
</com.google.android.material.textfield.TextInputLayout>
<LinearLayout
@@ -136,7 +135,6 @@
</com.google.android.material.textfield.TextInputLayout>
</LinearLayout>
<LinearLayout
android:orientation="vertical"
android:id="@+id/entry_extras_container"
style="@style/EntryEditSingleLine_container">
<ImageView
@@ -175,7 +173,6 @@
</LinearLayout>
<!-- file attachments -->
<LinearLayout
android:orientation="vertical"
android:id="@+id/entry_binaries_container"
style="@style/EntryEditSingleLine_container">
<ImageView
@@ -231,7 +228,6 @@
</LinearLayout>
<!--expires-->
<LinearLayout
android:orientation="vertical"
android:id="@+id/expires_section"
style="@style/EntryEditSingleLine_container">
<ImageView

View File

@@ -86,6 +86,8 @@ namespace keepass2android.services.AutofillBase
ParseRecursive(autofillView, view, isManualRequest);
}
autofillView.PackageId = autofillView.PackageId ?? _structure.ActivityComponent.PackageName;
return autofillView;
}
@@ -122,7 +124,6 @@ namespace keepass2android.services.AutofillBase
}
autofillView.InputFields.Add(new ViewNodeInputField(viewNode));
var childrenSize = viewNode.ChildCount;
if (childrenSize > 0)
{