首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
社区首页 >问答首页 >如何在Android中平等地填充ImageButton边与LinearLayout

如何在Android中平等地填充ImageButton边与LinearLayout
EN

Stack Overflow用户
提问于 2013-07-12 09:58:44
回答 1查看 779关注 0票数 0

我有两个LinearLayouts。我是我设置的第一个LinearLayout,ImageButton。如何与LinearLayout等量填充图像按钮边,然后如何用ImageButton平等填充背景图像边缘??

例如。如果我的LinearLayout有尺寸高度:20 dp宽度:20 dp,那么图像按钮应该有尺寸高度:20 dp宽度:20 dp,背景图像应该有尺寸高度:20 dp宽度:20 dp。

我的代码:

代码语言:javascript
代码运行次数:0
运行
复制
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:showDividers="none" >

    <LinearLayout
        android:id="@+id/zdj"
        android:layout_width="wrap_content"
        android:layout_height="100dp"
        android:layout_weight="0.25"
        android:orientation="vertical"

        >

        <ImageButton
            android:id="@+id/imageButton1"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:layout_weight="1"
            android:scaleType="fitCenter"
            android:src="@drawable/wawel" />

    </LinearLayout>

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="100dp"
        android:layout_weight="0.75"
        android:background="@drawable/tlo12"
        android:orientation="horizontal"
        android:paddingLeft="@dimen/activity_horizontal_margin">

    <TextView
        android:id="@+id/textViewNazwaObiektu"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1.63"
        android:textSize="20sp" />

    </LinearLayout>


</TableRow>
EN

回答 1

Stack Overflow用户

发布于 2013-07-12 10:02:52

如果您使用

代码语言:javascript
代码运行次数:0
运行
复制
        android:scaleType="fitCenter"

你的图像不会填满整个图像

如果您不关心图像方面,请使用:

代码语言:javascript
代码运行次数:0
运行
复制
        android:scaleType="fitXY"
票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/17612292

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档