家长在同一时间?

是否有可能实现这样的事情:我有一张图片可以设置为布局的背景,其中也是TextView。 所以我希望这个布局设置他的高度来包装内容(应该是TextView的高度)和ImageView以fill_parent作为高度和宽度。

我试过使用:

  • 具有背景和TextView的LinearLayout
  • 带背景的TextView
  • RelativeLayout与ImageView(将高度设置为fill_parent)和TextView(设置为wrap_content)
  • 有没有办法做到这一点?

    对不起,如果是关于相同的下一个问题,但我不知道如何找到解决方案。

    编辑:

    我会尽量更具体。 我想要一个带背景的TextView。 但我希望将该背景缩放以适应TextView,它应该是wrap_content宽度和wrap_content高度。 但我有更高分辨率的图像,所以有很多未使用的空间(背景不能缩放)。


  • 不,没有办法同时将视图的宽度/高度设置为wrap_contentfill_parent

  • 你究竟想达到什么目的? 你是这个意思吗?

    <LinearLayout 
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        ...
        android:background="@drawable/image" >
    
        <TextView 
            android:layout_width="wrap_content"
            android:layout_width="wrap_content"
            ... >
        </TextView>
    
    </LinearLayout>
    
  • 编辑

    如果你想很好地为TextView缩放背景图片,我想你可能想要看的是9幅图像。 看到这个职位了解更多信息。 另外这个。

    链接地址: http://www.djcxy.com/p/84711.html

    上一篇: parent at the same time?

    下一篇: Custom Button handling state