调整内容到布局框架

时间:2015-09-28 13:02:31

标签: android-layout android-activity android-studio

我刚开始学习如何为Android开发应用程序。我有一个简单易懂的问题,但我无法找到答案。

我试图做与wrap-content相反的事情(在图像按钮的上下文中)。 我希望我的内容适应按钮的框架,而wrap-content将框架与内容相匹配。

有办法吗?这听起来很容易,但我无法弄清楚如何。提前谢谢!

编辑:我认为我表达的很糟糕,抱歉。

我真正想要的是能够调整图像按钮的框架,使其内容自行调整到框架,而不是让按钮在静态图片周围裁剪。

1 个答案:

答案 0 :(得分:0)

使用match_parent

来自Android documentation

  

匹配父级:设置维度以匹配父元素的维度。在API级别8中添加以弃用fill_parent。

示例:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:layout_width="match_parent"
              android:layout_height="match_parent"
              android:orientation="vertical">