我如何使用TextView
将ImageView
与TextView
centered vertically
ConstraintLayout
对齐ImageView
我设法将其与{{}}的末尾对齐1}}但它没有垂直居中,因为ImageView
比TextView
稍微大一点我知道如何使用RelativeLayout
来做,但想要使用最佳做法并仅使用ConstraintLayout
以下是它应该如何显示的示例(云图标和文本上次备份)
答案 0 :(得分:5)
只需同时使用app:layout_constraintTop_toTopOf
和app:layout_constraintBottom_toBottomOf
,这会使TextView
中心与ImageView
垂直对齐。
<ImageView
android:id="@+id/imageView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@mipmap/ic_launcher"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="16dp"
android:text="Last Backup"
app:layout_constraintStart_toEndOf="@+id/imageView"
app:layout_constraintTop_toTopOf="@+id/imageView"
app:layout_constraintBottom_toBottomOf="@+id/imageView"
/>
答案 1 :(得分:2)
使用drawable
左侧为您的TextView,并根据需要更改gravity
根<{1}}
layout
答案 2 :(得分:0)
您可以使用ConstraintLayout:
将Textview顶部和底部约束设置为ImageView的顶部和底部。 这些约束将TextView设置在ImageView的中心。
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.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="match_parent">
<android.support.v7.widget.AppCompatImageView
android:id="@+id/imageview"
android:layout_width="50dp"
android:layout_height="50dp"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:srcCompat="@drawable/ic_icon"/>
<android.support.v7.widget.AppCompatTextView
android:id="@+id/textview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="TextView"
android:textColor="@android:color/white"
android:textSize="14sp"
app:layout_constraintStart_toEndOf="@+id/imageview"
app:layout_constraintBottom_toBottomOf="@+id/imageview"
app:layout_constraintTop_toTopOf="@+id/imageview"/>
</android.support.constraint.ConstraintLayout>
答案 3 :(得分:0)
设置父约束的顶部和底部。这些约束将设置约束中心
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintEnd_toEndOf="parent"
。
答案 4 :(得分:0)
<ImageView
android:id="@+id/ivImg"
android:layout_width="@dimen/dimen_24dp"
android:layout_height="@dimen/dimen_24dp"
android:layout_marginTop="@dimen/dimen_40dp"
android:src="@android:drawable/ic_menu_search"
android:layout_marginEnd="@dimen/dimen_20dp"
app:layout_constraintHorizontal_chainStyle="packed"
app:layout_constraintEnd_toStartOf="@+id/txtlbResult"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<TextView
android:id="@+id/txtlbResult"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/black"
android:textSize="@dimen/text14sp"
android:layout_marginTop="@dimen/dimen_40dp"
android:text="@string/your_result_are_here"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@+id/ivImg"
app:layout_constraintTop_toTopOf="parent" />