Compare commits
	
		
			4 Commits
		
	
	
		
			bugfix/237
			...
			i18n-fix
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 
						 | 
					4d1142df4d | ||
| 
						 | 
					4c632d0c72 | ||
| 
						 | 
					deb3701ebf | ||
| 
						 | 
					f001d1fa54 | 
@@ -730,7 +730,7 @@ namespace Kp2aAutofillParser
 | 
				
			|||||||
    {
 | 
					    {
 | 
				
			||||||
        public List<TField> InputFields { get; set; } = new List<TField>();
 | 
					        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;
 | 
					        public string WebDomain { get; set; } = null;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -69,6 +69,7 @@
 | 
				
			|||||||
                android:layout_height="wrap_content"
 | 
					                android:layout_height="wrap_content"
 | 
				
			||||||
                android:orientation="vertical">
 | 
					                android:orientation="vertical">
 | 
				
			||||||
                <LinearLayout
 | 
					                <LinearLayout
 | 
				
			||||||
 | 
					                    android:orientation="vertical"
 | 
				
			||||||
                    android:layout_width="match_parent"
 | 
					                    android:layout_width="match_parent"
 | 
				
			||||||
                    android:layout_height="wrap_content">
 | 
					                    android:layout_height="wrap_content">
 | 
				
			||||||
                    <com.google.android.material.textfield.TextInputLayout
 | 
					                    <com.google.android.material.textfield.TextInputLayout
 | 
				
			||||||
@@ -82,7 +83,7 @@
 | 
				
			|||||||
                            android:layout_height="wrap_content"
 | 
					                            android:layout_height="wrap_content"
 | 
				
			||||||
                            android:singleLine="true"
 | 
					                            android:singleLine="true"
 | 
				
			||||||
                            android:inputType="textPassword"
 | 
					                            android:inputType="textPassword"
 | 
				
			||||||
                            android:hint="password"
 | 
					                            android:hint="@string/hint_pass"
 | 
				
			||||||
                          android:importantForAccessibility="no"/>
 | 
					                          android:importantForAccessibility="no"/>
 | 
				
			||||||
                    </com.google.android.material.textfield.TextInputLayout>
 | 
					                    </com.google.android.material.textfield.TextInputLayout>
 | 
				
			||||||
                    <LinearLayout
 | 
					                    <LinearLayout
 | 
				
			||||||
@@ -135,6 +136,7 @@
 | 
				
			|||||||
            </com.google.android.material.textfield.TextInputLayout>
 | 
					            </com.google.android.material.textfield.TextInputLayout>
 | 
				
			||||||
        </LinearLayout>
 | 
					        </LinearLayout>
 | 
				
			||||||
      <LinearLayout
 | 
					      <LinearLayout
 | 
				
			||||||
 | 
					        android:orientation="vertical"
 | 
				
			||||||
            android:id="@+id/entry_extras_container"
 | 
					            android:id="@+id/entry_extras_container"
 | 
				
			||||||
            style="@style/EntryEditSingleLine_container">
 | 
					            style="@style/EntryEditSingleLine_container">
 | 
				
			||||||
            <ImageView
 | 
					            <ImageView
 | 
				
			||||||
@@ -173,6 +175,7 @@
 | 
				
			|||||||
        </LinearLayout>
 | 
					        </LinearLayout>
 | 
				
			||||||
    <!-- file attachments -->
 | 
					    <!-- file attachments -->
 | 
				
			||||||
        <LinearLayout
 | 
					        <LinearLayout
 | 
				
			||||||
 | 
					          android:orientation="vertical"
 | 
				
			||||||
            android:id="@+id/entry_binaries_container"
 | 
					            android:id="@+id/entry_binaries_container"
 | 
				
			||||||
            style="@style/EntryEditSingleLine_container">
 | 
					            style="@style/EntryEditSingleLine_container">
 | 
				
			||||||
            <ImageView
 | 
					            <ImageView
 | 
				
			||||||
@@ -228,6 +231,7 @@
 | 
				
			|||||||
        </LinearLayout>
 | 
					        </LinearLayout>
 | 
				
			||||||
    <!--expires-->
 | 
					    <!--expires-->
 | 
				
			||||||
      <LinearLayout
 | 
					      <LinearLayout
 | 
				
			||||||
 | 
					        android:orientation="vertical"
 | 
				
			||||||
        android:id="@+id/expires_section"
 | 
					        android:id="@+id/expires_section"
 | 
				
			||||||
            style="@style/EntryEditSingleLine_container">
 | 
					            style="@style/EntryEditSingleLine_container">
 | 
				
			||||||
            <ImageView
 | 
					            <ImageView
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -86,8 +86,6 @@ namespace keepass2android.services.AutofillBase
 | 
				
			|||||||
                ParseRecursive(autofillView, view, isManualRequest);
 | 
					                ParseRecursive(autofillView, view, isManualRequest);
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            autofillView.PackageId = autofillView.PackageId ?? _structure.ActivityComponent.PackageName;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
            return autofillView;
 | 
					            return autofillView;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
@@ -124,6 +122,7 @@ namespace keepass2android.services.AutofillBase
 | 
				
			|||||||
            }
 | 
					            }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            autofillView.InputFields.Add(new ViewNodeInputField(viewNode));
 | 
					            autofillView.InputFields.Add(new ViewNodeInputField(viewNode));
 | 
				
			||||||
 | 
					          
 | 
				
			||||||
            var childrenSize = viewNode.ChildCount;
 | 
					            var childrenSize = viewNode.ChildCount;
 | 
				
			||||||
            if (childrenSize > 0)
 | 
					            if (childrenSize > 0)
 | 
				
			||||||
            {
 | 
					            {
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user