我有一个相当简单的布局与图像,一些文本视图包装在垂直LinearLayout。每当我将此布局的背景设置为9patch时,布局的高度似乎设置为9patch的高度(即使9patch似乎成功拉伸到布局的高度。)
如果我使用纯色背景,布局的高度按预期工作。
以下是9patch的屏幕截图:
这是一个带有纯色背景而不是9patch的屏幕截图(注意文本现在如何在布局中居中):
最后,这是XML:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@color/show_gray"
android:gravity="center_vertical"
android:orientation="horizontal" android:weightSum="5">
<ImageView
android:id="@+id/imageView1"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="4"
android:scaleType="centerCrop"
android:src="@drawable/temp_featured_banner" />
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="#FF0000"
android:gravity="center"
android:orientation="vertical"
android:paddingLeft="30dp" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Large Text"
android:textColor="@color/white" />
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Small Text"
android:textColor="@color/white" />
</LinearLayout>
</LinearLayout>
...以防万一,这里是draw9patch的截图,显示我的9patch drawable:
我怀疑LinearLayout并不比9patch的自然尺寸高(因此没有任何东西可以伸展......),所以我将9patch的高度减少了50%。问题依然存在。
有什么想法吗?
答案 0 :(得分:1)
在9补丁程序中,在底部和右侧绘制线条以选择可以“折叠”的区域。可能会解决您的问题。
http://developer.android.com/guide/developing/tools/draw9patch.html
答案 1 :(得分:1)
九个补丁的顶部和左侧指的是图像的“可伸缩”区域。九个补丁的右边和底部定义了内容应该去的位置 - 目前,你只是告诉它猜测(并且通过将所有内容放在左上角指定的行中来猜测)。从我从你的图像中可以看出,你可能想要在九个补丁的右边从上到下(当然不包括角落)的实心黑线,以及在你的右上方黑点上的匹配点。底部。这告诉操作系统将内容放在与图像相关的位置,以便更好地了解如何拉伸图像。