a445c12094
* upgrade to AndroidX, upgrade libraries * move to MaterialComponents theme * make sure the compose button looks good everywhere * fix tollbar title/button alignment on tablet * move to new material color theming, consolidate colors and themes * fix build, fix imports * set error on TextInputLayout instead of EditText * fix imports, TootButton when * improve snackbar style * fix task description color
58 lines
No EOL
2.4 KiB
XML
58 lines
No EOL
2.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.constraintlayout.widget.ConstraintLayout 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"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingBottom="12dp"
|
|
android:paddingTop="12dp">
|
|
|
|
<androidx.emoji.widget.EmojiTextView
|
|
android:id="@+id/accountMovedText"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:drawablePadding="6dp"
|
|
android:textSize="?attr/status_text_medium"
|
|
tools:text="Account has moved" />
|
|
|
|
<com.keylesspalace.tusky.view.RoundedImageView
|
|
android:id="@+id/accountMovedAvatar"
|
|
android:layout_width="48dp"
|
|
android:layout_height="48dp"
|
|
android:layout_centerVertical="true"
|
|
android:layout_marginEnd="24dp"
|
|
android:layout_marginTop="8dp"
|
|
app:layout_constraintTop_toBottomOf="@id/accountMovedText"
|
|
tools:src="@drawable/avatar_default" />
|
|
|
|
|
|
<androidx.emoji.widget.EmojiTextView
|
|
android:id="@+id/accountMovedDisplayName"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="16dp"
|
|
android:ellipsize="end"
|
|
android:maxLines="1"
|
|
android:textColor="?android:textColorPrimary"
|
|
android:textSize="?attr/status_text_large"
|
|
android:textStyle="normal|bold"
|
|
app:layout_constraintBottom_toTopOf="@id/accountMovedUsername"
|
|
app:layout_constraintStart_toEndOf="@id/accountMovedAvatar"
|
|
app:layout_constraintTop_toTopOf="@id/accountMovedAvatar"
|
|
tools:text="Display name" />
|
|
|
|
<TextView
|
|
android:id="@+id/accountMovedUsername"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="16dp"
|
|
android:ellipsize="end"
|
|
android:maxLines="1"
|
|
android:textColor="?android:textColorSecondary"
|
|
android:textSize="?attr/status_text_medium"
|
|
app:layout_constraintBottom_toBottomOf="@id/accountMovedAvatar"
|
|
app:layout_constraintStart_toEndOf="@id/accountMovedAvatar"
|
|
app:layout_constraintTop_toBottomOf="@id/accountMovedDisplayName"
|
|
tools:text="\@username" />
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout> |