gpt4 book ai didi

android - 使图像适合完成的框架

转载 作者:行者123 更新时间:2023-11-29 21:56:25 24 4
gpt4 key购买 nike

我正在创建 ImageView 。但我的图像显示在中心,底部布局宽度也没有减少。这是我的代码:-

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >

<it.sephiroth.android.library.imagezoom.GalleryTouch
android:id="@+id/image"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_above="@+id/textView1"
android:layout_weight="1" />

<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:background="@drawable/bottom"
android:text=" Thank you" />

</RelativeLayout>

最佳答案

您应该使用 fill parent 来使用图像填充整个屏幕,我在这里更改您的代码可能对您有用-

    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_alignParentTop="true"
android:layout_height="fill_parent"
>

<it.sephiroth.android.library.imagezoom.GalleryTouch
android:id="@+id/image"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_above="@+id/textView1"
/>

<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:layout_alignParentBottom="true"
android:background="@drawable/bottom"
android:text=" THank you" />

</RelativeLayout>

关于android - 使图像适合完成的框架,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13117938/

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