当键盘在屏幕上时,Android径向渐变背景会发生变化

发布于 2024-12-01 01:37:06 字数 575 浏览 1 评论 0原文

我当前正在使用以下代码将径向渐变应用于视图的背景:

<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
    <gradient android:type="radial"
        android:gradientRadius="250"
        android:startColor="#479637"
        android:endColor="#3e6d34"
        />
</shape>

当软键盘位于屏幕上时,会出现问题,然后调整视图大小并重新绘制渐变以适应较小的视图。

有没有办法阻止这种情况发生,以便在不使用图像作为背景的情况下,径向渐变不会出现变化。我尝试使用 android:centerXandroid:centerY 但它们不允许我以倾斜的方式给出中心。

如果我的问题不清楚,我可以发布一张图片来解释问题。

提前感谢您的帮助。

I'm currently using the following code to apply a radial gradient to the background of a view:

<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
    <gradient android:type="radial"
        android:gradientRadius="250"
        android:startColor="#479637"
        android:endColor="#3e6d34"
        />
</shape>

The problem arises when the soft keyboard is on-screen, the view is then resized and the gradient is redrawn to fit the smaller view.

Is there a way to stop this happening, so that the radial gradient does not appear to change, without using an image for the background. I tried using android:centerX and android:centerY but they don't allow me to give the center in terms of dips.

I can post an image explaining the problem if my question isn't clear.

Thanks for your help in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

秋风の叶未落 2024-12-08 01:37:06

您将需要使用 android:windowSoftInputMode="adjustPan"AndroidManifest 中的属性。

<activity android:name=".MyActivity"
          android:label="@string/app_name"
          android:windowSoftInputMode="adjustPan">
</activity>

You will want to use the android:windowSoftInputMode="adjustPan"attribute in the AndroidManifest.

<activity android:name=".MyActivity"
          android:label="@string/app_name"
          android:windowSoftInputMode="adjustPan">
</activity>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文