Added a framelayout just for adding the confirm button
This commit is contained in:
parent
68bb23e3b4
commit
9d800106cc
|
@ -256,12 +256,38 @@
|
||||||
android:textColor="?android:textColorSecondary"
|
android:textColor="?android:textColorSecondary"
|
||||||
tools:text="\@Gargron" />
|
tools:text="\@Gargron" />
|
||||||
|
|
||||||
|
<FrameLayout
|
||||||
|
android:layout_width="fill_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:id="@+id/note_edit_wrapper"
|
||||||
|
android:layout_below="@id/username"
|
||||||
|
android:layout_marginTop="0dp"
|
||||||
|
android:padding="0dp">
|
||||||
|
|
||||||
|
<EditText
|
||||||
|
android:id="@+id/note_edit"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginLeft="16dp"
|
||||||
|
android:layout_marginTop="8dp"
|
||||||
|
android:layout_marginRight="16dp"
|
||||||
|
android:layout_marginBottom="4dp"
|
||||||
|
android:textAppearance="@style/m3_body_large"
|
||||||
|
android:textSize="16sp"
|
||||||
|
android:background="@drawable/edit_text_border"
|
||||||
|
android:inputType="textMultiLine|textCapSentences"
|
||||||
|
android:elevation="0dp"
|
||||||
|
android:hint="@string/sk_personal_note"
|
||||||
|
android:textColorHint="?android:textColorSecondaryInverseNoDisable"
|
||||||
|
tools:text="Founder, CEO and lead developer @Mastodon, Germany." />
|
||||||
|
|
||||||
|
</FrameLayout>
|
||||||
|
|
||||||
<org.joinmastodon.android.ui.views.LinkedTextView
|
<org.joinmastodon.android.ui.views.LinkedTextView
|
||||||
android:id="@+id/bio"
|
android:id="@+id/bio"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_below="@id/note_edit"
|
android:layout_below="@id/note_edit_wrapper"
|
||||||
android:layout_marginLeft="16dp"
|
android:layout_marginLeft="16dp"
|
||||||
android:layout_marginTop="4dp"
|
android:layout_marginTop="4dp"
|
||||||
android:layout_marginRight="16dp"
|
android:layout_marginRight="16dp"
|
||||||
|
@ -286,24 +312,6 @@
|
||||||
android:elevation="0dp"
|
android:elevation="0dp"
|
||||||
tools:text="Eugen" />
|
tools:text="Eugen" />
|
||||||
|
|
||||||
<EditText
|
|
||||||
android:id="@+id/note_edit"
|
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_below="@id/username"
|
|
||||||
android:layout_marginLeft="16dp"
|
|
||||||
android:layout_marginTop="8dp"
|
|
||||||
android:layout_marginRight="16dp"
|
|
||||||
android:layout_marginBottom="4dp"
|
|
||||||
android:textAppearance="@style/m3_body_large"
|
|
||||||
android:textSize="16sp"
|
|
||||||
android:background="@drawable/edit_text_border"
|
|
||||||
android:inputType="textMultiLine|textCapSentences"
|
|
||||||
android:elevation="0dp"
|
|
||||||
android:hint="@string/sk_personal_note"
|
|
||||||
android:textColorHint="?android:textColorSecondaryInverseNoDisable"
|
|
||||||
tools:text="Founder, CEO and lead developer @Mastodon, Germany." />
|
|
||||||
|
|
||||||
<EditText
|
<EditText
|
||||||
android:id="@+id/bio_edit"
|
android:id="@+id/bio_edit"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
|
|
Loading…
Reference in New Issue