我有一些彩色区域,它们有自己的宽度和高度比例,用于响应式布局。我想在红色区域粘贴一个视图,例如TextView,如下所示:
TextView保留其原始大小,而不受红色区域的限制。
我试过了:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<View
android:background="#FFFF77"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="0.2"/>
<LinearLayout
android:clipChildren="false"
android:layout_width="0dp"
android:layout_height="match_parent"
android:orientation="vertical"
android:layout_weight="0.01">
<View
android:clipChildren="false"
android:background="#77FFFF"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.2"/>
<RelativeLayout
android:id="@+id/progressBar"
android:clipChildren="false"
android:background="#FF0000"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.01">
<TextView
android:textAlignment="center"
android:gravity="center"
android:textSize="20dp"
android:text="abcde"
android:textColor="#000000"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</RelativeLayout>
<View
android:clipChildren="false"
android:background="#77FFFF"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.1"/>
</LinearLayout>
<View
android:background="#FFFF77"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="0.1"/>
</LinearLayout>
已经为中间元素设置了android:clipChildren =“false”,但TextView的大小似乎仍然受到红框的限制:
如何让TextView无限制大小,使其看起来好像粘在红色区域?
注意:在实践中,除红色区域外,其他区域会变得透明,所以不用担心黄色和青色区域会阻挡TextView答案 0 :(得分:0)
试用此资料库Spring Layout
答案 1 :(得分:0)
使用ConstraintLayout
可以获得与截图非常相似的内容,另外一个好处是,父内部只有三个视图:一个用于垂直线,一个用于红色框,以及一个用于文本。
这里有两个概念:
你可以&#34;居中&#34;通过将它们的边缘相互约束来比其他视图小的视图。因此,即使垂直线比父线小得多,当我约束它的左边以匹配父左边和它的右边以匹配父右边时,它将在(水平)中心绘制自己父母的。
然后你可以准确地调整这个&#34;居中&#34;通过在该方向设置bias
来工作。由于你之前的权重在左边是0.2,在右边是0.1,我将线的水平偏差设置为0.67,所以它的三分之二到了父母的右边缘。
然后我将红色视图的左右两侧限制在垂直线的左右两侧,并使用相同的居中+偏置技巧将其推向屏幕的三分之二。
最后,我约束文本视图的所有四个边缘以匹配红色框的所有四个边缘。这会在红色框之外绘制文本视图,但会直接在其上居中。
您可以使用数字来获得您想要的内容。
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#FFFF77">
<View
android:id="@+id/verticalLine"
android:layout_width="12dp"
android:layout_height="0dp"
android:background="#77FFFF"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintHorizontal_bias="0.67"/>
<View
android:id="@+id/redSquare"
android:layout_width="0dp"
android:layout_height="24dp"
android:background="#FF0000"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintLeft_toLeftOf="@+id/verticalLine"
app:layout_constraintRight_toRightOf="@+id/verticalLine"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintVertical_bias="0.67"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:textColor="#000000"
android:textSize="20dp"
android:text="abcde"
app:layout_constraintTop_toTopOf="@+id/redSquare"
app:layout_constraintLeft_toLeftOf="@+id/redSquare"
app:layout_constraintRight_toRightOf="@+id/redSquare"
app:layout_constraintBottom_toBottomOf="@+id/redSquare"/>
</android.support.constraint.ConstraintLayout>