Add group edition scroll and notes multiline

This commit is contained in:
J-Jamet
2021-02-11 19:18:56 +01:00
parent 1eea5412a5
commit b7b99c77c8

View File

@@ -17,12 +17,15 @@
You should have received a copy of the GNU General Public License
along with KeePassDX. If not, see <http://www.gnu.org/licenses/>.
-->
<LinearLayout
<androidx.core.widget.NestedScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_height="wrap_content"
android:padding="@dimen/default_margin"
android:importantForAutofill="noExcludeDescendants"
tools:targetApi="o">
@@ -58,8 +61,8 @@
android:layout_height="wrap_content"
android:layout_marginLeft="4dp"
android:layout_marginStart="4dp"
android:inputType="text"
android:maxLines="5"
android:inputType="textMultiLine"
android:maxLines="3"
android:hint="@string/entry_notes"/>
</com.google.android.material.textfield.TextInputLayout>
<com.kunzisoft.keepass.view.ExpirationView
@@ -68,4 +71,5 @@
android:layout_height="wrap_content"
android:layout_marginLeft="4dp"
android:layout_marginStart="4dp" />
</LinearLayout>
</LinearLayout>
</androidx.core.widget.NestedScrollView>