gpt4 book ai didi

Android 9-Patch 缩放问题

转载 作者:太空宇宙 更新时间:2023-11-03 13:30:16 25 4
gpt4 key购买 nike

我在使用 9 补丁图像作为 EditText 字段的背景时遇到缩放问题。我有一张拉伸(stretch)整个宽度的 table ,在这里我有下面的表格行,它填满了表格的宽度。

问题是我使用 9 补丁图像作为背景,但编辑文本字段没有拉伸(stretch)到整个宽度,它只拉伸(stretch)到提示文本的宽度。

<TableRow
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical|center_horizontal" >

<EditText
android:id="@+id/et_username"
android:contentDescription="@string/hint_enterUsername"
android:hint="@string/hint_enterUsername"
android:singleLine="true"
android:textSize="@dimen/edittext_textsize"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center_horizontal|center_vertical"
android:background="@drawable/background_field_top" />

</TableRow>

我可以在图形 View 中看到行的宽度确实拉伸(stretch)了,但 EditText 字段没有拉伸(stretch),如附图所示

Graphical View

有没有人对如何使 edittext 拉伸(stretch)到整个大小有任何想法?以下是我使用的 9 补丁图像。

9-patch image

最佳答案

来自 Android 开发者文档 TableRow

A layout that arranges its children horizontally. A TableRow should always be used as a child of a TableLayout. If a TableRow's parent is not a TableLayout, the TableRow will behave as an horizontal LinearLayout.

@Nipun Gogia 的回答不正确,为什么将 TableRow(表现得像 Horizo​​ntal LinearLayout)放在只有 一个 EditText 子项的 LinearLayout 中?

您应该将 EditText View 作为 TableLayout 的直接 subview ,然后它将显示为跨越所有表格列的单行。如果需要,您可以添加更多 TableRow 和 Columns。

使用 Nine-Patch 拉伸(stretch) EditText View 的背景图像:

需要编辑9.png文件的9-patch规则设置图片的可拉伸(stretch)区域,将最上面的规则(黑色1px线)放在图片中间,现在只在透明处拉伸(stretch)结束使图像未拉伸(stretch)。向她学习:http://developer.android.com/tools/help/draw9patch.html

重要!记得用扩展名 .9.png 保存图片


保存的九补丁图像,文件扩展名为:background.9.png

enter image description here


修改后的小图,由于九 block 规则,看起来和上面一样。

modified image


修改后的图像,但具有不可拉伸(stretch)的高度。

enter image description here


注意:如果使用“将图像另存为...”下载上面的图像,请记住将 .9.png 添加到文件名中以使其正常工作。

关于Android 9-Patch 缩放问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14323630/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com