layout with hints for keyboard
This commit is contained in:
@@ -1,8 +1,6 @@
|
|||||||
package de.joel.zoomhelper;
|
package de.joel.zoomhelper;
|
||||||
|
|
||||||
import android.annotation.SuppressLint;
|
import android.annotation.SuppressLint;
|
||||||
import android.content.ClipData;
|
|
||||||
import android.content.ClipboardManager;
|
|
||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
import android.content.Intent;
|
import android.content.Intent;
|
||||||
import android.content.SharedPreferences;
|
import android.content.SharedPreferences;
|
||||||
@@ -31,7 +29,7 @@ import java.io.Serializable;
|
|||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.Objects;
|
import java.util.Objects;
|
||||||
|
|
||||||
class InstantAutoComplete extends androidx.appcompat.widget.AppCompatAutoCompleteTextView {
|
class InstantAutoComplete extends com.google.android.material.textfield.MaterialAutoCompleteTextView {
|
||||||
|
|
||||||
public InstantAutoComplete(Context context) {
|
public InstantAutoComplete(Context context) {
|
||||||
super(context);
|
super(context);
|
||||||
@@ -50,6 +48,7 @@ class InstantAutoComplete extends androidx.appcompat.widget.AppCompatAutoComplet
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public class MainActivity extends AppCompatActivity {
|
public class MainActivity extends AppCompatActivity {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -201,7 +200,7 @@ public class MainActivity extends AppCompatActivity {
|
|||||||
}
|
}
|
||||||
|
|
||||||
AutoCompleteTextView textMeetingName = findViewById(R.id.TextMeetingName);
|
AutoCompleteTextView textMeetingName = findViewById(R.id.TextMeetingName);
|
||||||
ImageView dropdown = findViewById(R.id.image);
|
ImageView dropdown = findViewById(R.id.iconDropdownMeetingName);
|
||||||
ArrayAdapter<String> adapter = new ArrayAdapter<>(this, android.R.layout.simple_dropdown_item_1line, meetingNames);
|
ArrayAdapter<String> adapter = new ArrayAdapter<>(this, android.R.layout.simple_dropdown_item_1line, meetingNames);
|
||||||
textMeetingName.setAdapter(adapter);
|
textMeetingName.setAdapter(adapter);
|
||||||
|
|
||||||
@@ -229,7 +228,7 @@ public class MainActivity extends AppCompatActivity {
|
|||||||
}
|
}
|
||||||
|
|
||||||
AutoCompleteTextView textName = findViewById(R.id.textBoxName);
|
AutoCompleteTextView textName = findViewById(R.id.textBoxName);
|
||||||
ImageView dropdown = findViewById(R.id.image2);
|
ImageView dropdown = findViewById(R.id.iconDropdownAttName);
|
||||||
ArrayAdapter<String> adapter = new ArrayAdapter<>(this, android.R.layout.simple_dropdown_item_1line, attNames);
|
ArrayAdapter<String> adapter = new ArrayAdapter<>(this, android.R.layout.simple_dropdown_item_1line, attNames);
|
||||||
textName.setAdapter(adapter);
|
textName.setAdapter(adapter);
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
|
||||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
||||||
xmlns:tools="http://schemas.android.com/tools"
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
android:id="@+id/layoutBegin"
|
android:id="@+id/layoutBegin"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
|
|||||||
@@ -13,6 +13,7 @@
|
|||||||
android:layout_marginEnd="15dp"
|
android:layout_marginEnd="15dp"
|
||||||
android:background="?attr/selectableItemBackgroundBorderless"
|
android:background="?attr/selectableItemBackgroundBorderless"
|
||||||
android:clickable="true"
|
android:clickable="true"
|
||||||
|
android:contentDescription="@string/addTooltip"
|
||||||
android:focusable="true"
|
android:focusable="true"
|
||||||
android:tooltipText="@string/addTooltip"
|
android:tooltipText="@string/addTooltip"
|
||||||
app:layout_constraintEnd_toStartOf="@+id/imageTrash"
|
app:layout_constraintEnd_toStartOf="@+id/imageTrash"
|
||||||
@@ -26,6 +27,7 @@
|
|||||||
android:layout_marginEnd="15dp"
|
android:layout_marginEnd="15dp"
|
||||||
android:background="?attr/selectableItemBackgroundBorderless"
|
android:background="?attr/selectableItemBackgroundBorderless"
|
||||||
android:clickable="true"
|
android:clickable="true"
|
||||||
|
android:contentDescription="@string/deleteTooltip"
|
||||||
android:focusable="true"
|
android:focusable="true"
|
||||||
android:tooltipText="@string/deleteTooltip"
|
android:tooltipText="@string/deleteTooltip"
|
||||||
app:layout_constraintEnd_toStartOf="@+id/imageSave"
|
app:layout_constraintEnd_toStartOf="@+id/imageSave"
|
||||||
@@ -39,6 +41,7 @@
|
|||||||
android:layout_marginEnd="15dp"
|
android:layout_marginEnd="15dp"
|
||||||
android:background="?attr/selectableItemBackgroundBorderless"
|
android:background="?attr/selectableItemBackgroundBorderless"
|
||||||
android:clickable="true"
|
android:clickable="true"
|
||||||
|
android:contentDescription="@string/saveTooltip"
|
||||||
android:focusable="true"
|
android:focusable="true"
|
||||||
android:tooltipText="@string/saveTooltip"
|
android:tooltipText="@string/saveTooltip"
|
||||||
app:layout_constraintEnd_toStartOf="@+id/imageShare"
|
app:layout_constraintEnd_toStartOf="@+id/imageShare"
|
||||||
@@ -52,6 +55,7 @@
|
|||||||
android:layout_marginEnd="15dp"
|
android:layout_marginEnd="15dp"
|
||||||
android:background="?attr/selectableItemBackgroundBorderless"
|
android:background="?attr/selectableItemBackgroundBorderless"
|
||||||
android:clickable="true"
|
android:clickable="true"
|
||||||
|
android:contentDescription="@string/shareTooltip"
|
||||||
android:focusable="true"
|
android:focusable="true"
|
||||||
android:tooltipText="@string/shareTooltip"
|
android:tooltipText="@string/shareTooltip"
|
||||||
app:layout_constraintEnd_toStartOf="@+id/imageAttend"
|
app:layout_constraintEnd_toStartOf="@+id/imageAttend"
|
||||||
@@ -66,6 +70,7 @@
|
|||||||
android:layout_marginEnd="15dp"
|
android:layout_marginEnd="15dp"
|
||||||
android:background="?attr/selectableItemBackgroundBorderless"
|
android:background="?attr/selectableItemBackgroundBorderless"
|
||||||
android:clickable="true"
|
android:clickable="true"
|
||||||
|
android:contentDescription="@string/joinTooltip"
|
||||||
android:focusable="true"
|
android:focusable="true"
|
||||||
android:tooltipText="@string/joinTooltip"
|
android:tooltipText="@string/joinTooltip"
|
||||||
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
|
||||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
||||||
xmlns:tools="http://schemas.android.com/tools"
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
android:id="@+id/layoutBegin"
|
android:id="@+id/layoutBegin"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
|
|||||||
@@ -13,6 +13,7 @@
|
|||||||
android:layout_marginEnd="15dp"
|
android:layout_marginEnd="15dp"
|
||||||
android:background="?attr/selectableItemBackgroundBorderless"
|
android:background="?attr/selectableItemBackgroundBorderless"
|
||||||
android:clickable="true"
|
android:clickable="true"
|
||||||
|
android:contentDescription="@string/addTooltip"
|
||||||
android:focusable="true"
|
android:focusable="true"
|
||||||
app:layout_constraintEnd_toStartOf="@+id/imageTrash"
|
app:layout_constraintEnd_toStartOf="@+id/imageTrash"
|
||||||
app:layout_constraintTop_toTopOf="parent"
|
app:layout_constraintTop_toTopOf="parent"
|
||||||
@@ -25,6 +26,7 @@
|
|||||||
android:layout_marginEnd="15dp"
|
android:layout_marginEnd="15dp"
|
||||||
android:background="?attr/selectableItemBackgroundBorderless"
|
android:background="?attr/selectableItemBackgroundBorderless"
|
||||||
android:clickable="true"
|
android:clickable="true"
|
||||||
|
android:contentDescription="@string/deleteTooltip"
|
||||||
android:focusable="true"
|
android:focusable="true"
|
||||||
app:layout_constraintEnd_toStartOf="@+id/imageSave"
|
app:layout_constraintEnd_toStartOf="@+id/imageSave"
|
||||||
app:layout_constraintTop_toTopOf="@+id/imageAdd"
|
app:layout_constraintTop_toTopOf="@+id/imageAdd"
|
||||||
@@ -37,6 +39,7 @@
|
|||||||
android:layout_marginEnd="15dp"
|
android:layout_marginEnd="15dp"
|
||||||
android:background="?attr/selectableItemBackgroundBorderless"
|
android:background="?attr/selectableItemBackgroundBorderless"
|
||||||
android:clickable="true"
|
android:clickable="true"
|
||||||
|
android:contentDescription="@string/saveTooltip"
|
||||||
android:focusable="true"
|
android:focusable="true"
|
||||||
app:layout_constraintEnd_toStartOf="@+id/imageShare"
|
app:layout_constraintEnd_toStartOf="@+id/imageShare"
|
||||||
app:layout_constraintTop_toTopOf="@+id/imageAdd"
|
app:layout_constraintTop_toTopOf="@+id/imageAdd"
|
||||||
@@ -49,6 +52,7 @@
|
|||||||
android:layout_marginEnd="15dp"
|
android:layout_marginEnd="15dp"
|
||||||
android:background="?attr/selectableItemBackgroundBorderless"
|
android:background="?attr/selectableItemBackgroundBorderless"
|
||||||
android:clickable="true"
|
android:clickable="true"
|
||||||
|
android:contentDescription="@string/shareTooltip"
|
||||||
android:focusable="true"
|
android:focusable="true"
|
||||||
app:layout_constraintEnd_toStartOf="@+id/imageAttend"
|
app:layout_constraintEnd_toStartOf="@+id/imageAttend"
|
||||||
app:layout_constraintTop_toTopOf="@+id/imageAdd"
|
app:layout_constraintTop_toTopOf="@+id/imageAdd"
|
||||||
@@ -62,6 +66,7 @@
|
|||||||
android:layout_marginEnd="15dp"
|
android:layout_marginEnd="15dp"
|
||||||
android:background="?attr/selectableItemBackgroundBorderless"
|
android:background="?attr/selectableItemBackgroundBorderless"
|
||||||
android:clickable="true"
|
android:clickable="true"
|
||||||
|
android:contentDescription="@string/joinTooltip"
|
||||||
android:focusable="true"
|
android:focusable="true"
|
||||||
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
app:layout_constraintTop_toTopOf="@+id/imageAdd"
|
app:layout_constraintTop_toTopOf="@+id/imageAdd"
|
||||||
|
|||||||
@@ -6,137 +6,157 @@
|
|||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
android:orientation="horizontal">
|
android:orientation="horizontal">
|
||||||
|
|
||||||
<TextView
|
|
||||||
android:id="@+id/textMeetingName"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:text="@string/MeetingName"
|
|
||||||
app:layout_constraintBottom_toTopOf="@+id/TextMeetingName"
|
|
||||||
app:layout_constraintHorizontal_weight="90"
|
|
||||||
app:layout_constraintStart_toStartOf="parent" />
|
|
||||||
|
|
||||||
<de.joel.zoomhelper.InstantAutoComplete
|
<com.google.android.material.textfield.TextInputLayout
|
||||||
android:id="@+id/TextMeetingName"
|
android:id="@+id/layoutMeetingName"
|
||||||
android:layout_width="0dp"
|
android:layout_width="0dp"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginBottom="22dp"
|
android:layout_marginBottom="22dp"
|
||||||
android:inputType="text"
|
android:background="@android:color/transparent"
|
||||||
app:layout_constraintBottom_toTopOf="@+id/textName"
|
android:hint="@string/MeetingName"
|
||||||
|
app:boxBackgroundColor="@android:color/transparent"
|
||||||
|
app:layout_constraintBottom_toTopOf="@+id/layoutName"
|
||||||
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
app:layout_constraintWidth_percent="0.9" />
|
app:layout_constraintWidth_percent="0.9">
|
||||||
|
|
||||||
|
<de.joel.zoomhelper.InstantAutoComplete
|
||||||
|
android:id="@+id/TextMeetingName"
|
||||||
|
style="@style/Widget.MaterialComponents.AutoCompleteTextView.FilledBox"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:focusable="true"
|
||||||
|
android:focusableInTouchMode="true"
|
||||||
|
android:imeOptions="actionNext"
|
||||||
|
android:inputType="text"
|
||||||
|
android:nextFocusForward="@+id/textBoxName" />
|
||||||
|
</com.google.android.material.textfield.TextInputLayout>
|
||||||
|
|
||||||
<ImageView
|
<ImageView
|
||||||
android:id="@+id/image"
|
android:id="@+id/iconDropdownMeetingName"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:background="?attr/selectableItemBackgroundBorderless"
|
android:background="?attr/selectableItemBackgroundBorderless"
|
||||||
android:clickable="true"
|
android:clickable="true"
|
||||||
|
android:contentDescription="@string/dropdownBtn"
|
||||||
android:focusable="true"
|
android:focusable="true"
|
||||||
android:padding="5dp"
|
android:padding="5dp"
|
||||||
android:src="@mipmap/baseline_arrow_drop_down_black_24"
|
android:src="@mipmap/baseline_arrow_drop_down_black_24"
|
||||||
app:layout_constraintStart_toEndOf="@+id/TextMeetingName"
|
app:layout_constraintStart_toEndOf="@+id/layoutMeetingName"
|
||||||
app:layout_constraintTop_toTopOf="@+id/TextMeetingName" />
|
app:layout_constraintTop_toTopOf="@+id/layoutMeetingName"
|
||||||
|
app:layout_constraintBottom_toBottomOf="@+id/layoutMeetingName"/>
|
||||||
|
|
||||||
|
|
||||||
<TextView
|
<com.google.android.material.textfield.TextInputLayout
|
||||||
android:id="@+id/textID"
|
android:id="@+id/textID"
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:text="@string/MeetingID"
|
|
||||||
app:layout_constraintBottom_toTopOf="@+id/textBoxID"
|
|
||||||
app:layout_constraintStart_toStartOf="parent" />
|
|
||||||
|
|
||||||
<EditText
|
|
||||||
android:id="@+id/textBoxID"
|
|
||||||
android:layout_width="0dp"
|
android:layout_width="0dp"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginBottom="22dp"
|
android:layout_marginBottom="22dp"
|
||||||
android:focusable="true"
|
android:background="@android:color/transparent"
|
||||||
android:focusableInTouchMode="true"
|
android:hint="@string/MeetingID"
|
||||||
android:inputType="text"
|
app:boxBackgroundColor="@android:color/transparent"
|
||||||
app:layout_constraintBottom_toTopOf="@+id/textPW"
|
app:layout_constraintBottom_toTopOf="@+id/textPW"
|
||||||
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
app:layout_constraintWidth_percent="0.9" />
|
app:layout_constraintWidth_percent="0.9">
|
||||||
|
|
||||||
|
<com.google.android.material.textfield.TextInputEditText
|
||||||
|
android:id="@+id/textBoxID"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:autofillHints="@string/idHint"
|
||||||
|
android:focusable="true"
|
||||||
|
android:focusableInTouchMode="true"
|
||||||
|
android:inputType="text"
|
||||||
|
app:layout_constraintBottom_toTopOf="@+id/textPW"
|
||||||
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintWidth_percent="0.9" />
|
||||||
|
</com.google.android.material.textfield.TextInputLayout>
|
||||||
|
|
||||||
<TextView
|
|
||||||
android:id="@+id/textPW"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_marginTop="22dp"
|
|
||||||
android:text="@string/Password"
|
|
||||||
app:layout_constraintBottom_toTopOf="@+id/layoutPW"
|
|
||||||
app:layout_constraintStart_toStartOf="parent" />
|
|
||||||
|
|
||||||
<com.google.android.material.textfield.TextInputLayout
|
<com.google.android.material.textfield.TextInputLayout
|
||||||
android:id="@+id/layoutPW"
|
android:id="@+id/textPW"
|
||||||
android:layout_width="0dp"
|
android:layout_width="0dp"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginBottom="50dp"
|
android:layout_marginBottom="50dp"
|
||||||
android:background="@android:color/transparent"
|
android:background="@android:color/transparent"
|
||||||
|
android:hint="@string/Password"
|
||||||
app:boxBackgroundColor="@android:color/transparent"
|
app:boxBackgroundColor="@android:color/transparent"
|
||||||
app:layout_constraintBottom_toTopOf="@+id/textMeetingName"
|
app:layout_constraintBottom_toTopOf="@+id/layoutMeetingName"
|
||||||
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
app:layout_constraintWidth_percent="0.9"
|
app:layout_constraintWidth_percent="0.9"
|
||||||
app:passwordToggleDrawable="@drawable/show_password_selector"
|
app:passwordToggleDrawable="@drawable/show_password_selector"
|
||||||
app:passwordToggleEnabled="true">
|
app:passwordToggleEnabled="true">
|
||||||
|
|
||||||
<EditText
|
<com.google.android.material.textfield.TextInputEditText
|
||||||
android:id="@+id/editTextTextPassword2"
|
android:id="@+id/editTextTextPassword2"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
|
android:autofillHints="@string/pwdHint"
|
||||||
android:inputType="textPassword" />
|
android:inputType="textPassword" />
|
||||||
|
|
||||||
</com.google.android.material.textfield.TextInputLayout>
|
</com.google.android.material.textfield.TextInputLayout>
|
||||||
|
|
||||||
<TextView
|
<com.google.android.material.textfield.TextInputLayout
|
||||||
android:id="@+id/textName"
|
android:id="@+id/layoutName"
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_marginTop="22dp"
|
|
||||||
android:text="@string/DisplayName"
|
|
||||||
app:layout_constraintBottom_toTopOf="@+id/textBoxName"
|
|
||||||
app:layout_constraintStart_toStartOf="parent" />
|
|
||||||
|
|
||||||
|
|
||||||
<de.joel.zoomhelper.InstantAutoComplete
|
|
||||||
android:id="@+id/textBoxName"
|
|
||||||
android:layout_width="0dp"
|
android:layout_width="0dp"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginBottom="22dp"
|
android:layout_marginBottom="22dp"
|
||||||
android:inputType="text"
|
android:background="@android:color/transparent"
|
||||||
app:layout_constraintBottom_toTopOf="@+id/textAtt"
|
android:hint="@string/DisplayName"
|
||||||
|
app:boxBackgroundColor="@android:color/transparent"
|
||||||
|
app:layout_constraintBottom_toTopOf="@+id/layoutAtt"
|
||||||
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
app:layout_constraintWidth_percent="0.9" />
|
app:layout_constraintWidth_percent="0.9">
|
||||||
|
|
||||||
|
<de.joel.zoomhelper.InstantAutoComplete
|
||||||
|
android:id="@+id/textBoxName"
|
||||||
|
style="@style/Widget.MaterialComponents.AutoCompleteTextView.FilledBox"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:focusable="true"
|
||||||
|
android:focusableInTouchMode="true"
|
||||||
|
android:imeOptions="actionNext"
|
||||||
|
android:inputType="text"
|
||||||
|
android:nextFocusForward="@+id/editAtt"
|
||||||
|
app:layout_constraintBottom_toTopOf="@+id/editAtt"
|
||||||
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintWidth_percent="0.9" />
|
||||||
|
</com.google.android.material.textfield.TextInputLayout>
|
||||||
|
|
||||||
<ImageView
|
<ImageView
|
||||||
android:id="@+id/image2"
|
android:id="@+id/iconDropdownAttName"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:background="?attr/selectableItemBackgroundBorderless"
|
android:background="?attr/selectableItemBackgroundBorderless"
|
||||||
android:clickable="true"
|
android:clickable="true"
|
||||||
|
android:contentDescription="@string/dropdownBtn"
|
||||||
android:focusable="true"
|
android:focusable="true"
|
||||||
android:padding="5dp"
|
android:padding="5dp"
|
||||||
android:src="@mipmap/baseline_arrow_drop_down_black_24"
|
android:src="@mipmap/baseline_arrow_drop_down_black_24"
|
||||||
app:layout_constraintStart_toEndOf="@+id/textBoxName"
|
app:layout_constraintStart_toEndOf="@+id/layoutName"
|
||||||
app:layout_constraintTop_toTopOf="@+id/textBoxName" />
|
app:layout_constraintTop_toTopOf="@+id/layoutName"
|
||||||
|
app:layout_constraintBottom_toBottomOf="@+id/layoutName"/>
|
||||||
|
|
||||||
<TextView
|
<com.google.android.material.textfield.TextInputLayout
|
||||||
android:id="@+id/textAtt"
|
android:id="@+id/layoutAtt"
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_marginTop="22dp"
|
|
||||||
android:text="@string/AttendeesInput"
|
|
||||||
app:layout_constraintBottom_toTopOf="@+id/editAtt"
|
|
||||||
app:layout_constraintStart_toStartOf="parent" />
|
|
||||||
|
|
||||||
<EditText
|
|
||||||
android:id="@+id/editAtt"
|
|
||||||
android:layout_width="0dp"
|
android:layout_width="0dp"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:inputType="number"
|
|
||||||
android:layout_marginBottom="22dp"
|
android:layout_marginBottom="22dp"
|
||||||
|
android:background="@android:color/transparent"
|
||||||
|
android:hint="@string/AttendeesInput"
|
||||||
|
app:boxBackgroundColor="@android:color/transparent"
|
||||||
app:layout_constraintBottom_toBottomOf="parent"
|
app:layout_constraintBottom_toBottomOf="parent"
|
||||||
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
app:layout_constraintWidth_percent="0.9" />
|
app:layout_constraintWidth_percent="0.9">
|
||||||
|
|
||||||
|
<com.google.android.material.textfield.TextInputEditText
|
||||||
|
android:id="@+id/editAtt"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:focusable="true"
|
||||||
|
android:focusableInTouchMode="true"
|
||||||
|
android:imeOptions="actionDone"
|
||||||
|
android:importantForAutofill="no"
|
||||||
|
android:inputType="number"/>
|
||||||
|
</com.google.android.material.textfield.TextInputLayout>
|
||||||
|
|
||||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||||
@@ -17,5 +17,8 @@
|
|||||||
<string name="suretoremove">Willst du das Meeting %1$s löschen?</string>
|
<string name="suretoremove">Willst du das Meeting %1$s löschen?</string>
|
||||||
<string name="yes">Ja</string>
|
<string name="yes">Ja</string>
|
||||||
<string name="no">Nein</string>
|
<string name="no">Nein</string>
|
||||||
|
<string name="dropdownBtn">aufklappen</string>
|
||||||
|
<string name="pwdHint">Kenncode</string>
|
||||||
|
<string name="idHint">Meeting ID</string>
|
||||||
|
|
||||||
</resources>
|
</resources>
|
||||||
Reference in New Issue
Block a user