Rewrite layout of EditEntryActivity to not use TableLayout

This prevents excessive overdraw and fixes the UI tests
This commit is contained in:
Alexander Bakker 2021-01-24 12:53:29 +01:00
parent 44ff321f8f
commit 68436fba9c
8 changed files with 130 additions and 135 deletions

View file

@ -53,7 +53,7 @@ public class VaultEntry extends UUIDMap.Value {
JSONObject obj = new JSONObject();
try {
obj.put("type", _info.getType());
obj.put("type", _info.getTypeId());
obj.put("uuid", getUUID().toString());
obj.put("name", _name);
obj.put("issuer", _issuer);