我在udacity android教程中看到,这可以通过使用ImageView和TextView以及为TextView指定TextView的约束来实现。但这是在没有硬编码框的尺寸(即宽度和高度)的情况下实现的。 ImageView设置为0dp,ImageView仅使用约束进行扩展。)
我试过以下,但没有给出正确的结果:
<ImageView
android:id="@+id/imageViewTable"
android:layout_width="0dp"
android:layout_height="0dp"
android:background="@color/colorPrimary"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toBottomOf="parent"
android:layout_marginTop="10dp"
android:layout_marginLeft="16dp"
android:layout_marginRight="16dp"
android:layout_marginStart="16dp"
android:layout_marginEnd="16dp"/>
<TextView
android:id="@+id/textViewTest"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="TextView"
android:textAppearance="@style/TextAppearance.AppCompat.Display1"
app:layout_constraintLeft_toLeftOf="@id/imageViewTable"
app:layout_constraintRight_toRightOf="@id/imageViewTable"
app:layout_constraintTop_toTopOf="@id/imageViewTable"
app:layout_constraintBottom_toBottomOf="@id/imageViewTable"
/>
我知道有一种简单的方法可以使用填充,但我想知道如何以这种方式完成(使用0dp imageview)
答案 0 :(得分:1)
<android.support.constraint.ConstraintLayout xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:background="@color/black"
android:visibility="visible"
xmlns:android="http://schemas.android.com/apk/res/android">
<ImageView
android:id="@+id/imageViewTable"
android:layout_width="0dp"
android:layout_height="0dp"
android:background="@color/colorPrimary"
app:layout_constraintRight_toRightOf="@+id/textViewTest"
app:layout_constraintLeft_toLeftOf="@+id/textViewTest"
app:layout_constraintBottom_toBottomOf="@+id/textViewTest"
app:layout_constraintTop_toTopOf="@+id/textViewTest" />
<TextView
android:padding="16dp"
android:id="@+id/textViewTest"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="TextVigjsdgjew"
android:textColor="@android:color/white"
style="@style/TextAppearance.AppCompat.Large"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"/>
</android.support.constraint.ConstraintLayout>
答案 1 :(得分:0)
扩展Tiago's answer,您只需删除imageViewTable
并按以下方式更改textViewTest
:
<TextView
android:id="@+id/textViewTest"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="TextView"
android:textAppearance="@style/TextAppearance.AppCompat.Display1"
android:padding="16dp"
android:background="@color/colorPrimary"
/>