android层列表页眉和页脚

发布于 2024-10-15 04:23:10 字数 1089 浏览 1 评论 0原文

我正在尝试为具有多个渐变的线性布局创建一个背景可绘制对象。

例如,我想要顶部和底部有渐变,中间有纯色。所以基本上是页眉和页脚。

我正在尝试使用这样的图层列表:

<?xml version="1.0" encoding="utf-8"?>
<layer-list
 xmlns:android="http://schemas.android.com/apk/res/android">
 <!--Red-->
 <item>
  <shape
   xmlns:android="http://schemas.android.com/apk/res/android">
   <solid
    android:color="#ff0000" />
  </shape>

 </item>
 <!-- Green -->
        <!-- Offsets from the top and bottom -->
 <item
  android:top="20dp"
  android:bottom="20dp">
  <shape
   xmlns:android="http://schemas.android.com/apk/res/android">
   <solid
    android:color="#00ff00" />
  </shape>

 </item>
 <item
  android:top="80dp">
  <!--Blue -->
  <shape
   xmlns:android="http://schemas.android.com/apk/res/android">
   <solid
    android:color="#0000ff" />
  </shape>
 </item>
</layer-list>

问题是,我不确定密度无关像素的最大值。为此,底部项目 offest 需要为(最大 dp 值 - 20)。我尝试假设最大值为 100,并且还假设最大值为 160(来自文档),但这些都不起作用。

有什么想法吗?

I am trying to create a background drawable for a linearlayout that has multiple gradients.

E.g. I want to have a gradient at the top and bottom, and a solid color in the middle. So basically a header and footer.

I am trying to use a layer-list like this:

<?xml version="1.0" encoding="utf-8"?>
<layer-list
 xmlns:android="http://schemas.android.com/apk/res/android">
 <!--Red-->
 <item>
  <shape
   xmlns:android="http://schemas.android.com/apk/res/android">
   <solid
    android:color="#ff0000" />
  </shape>

 </item>
 <!-- Green -->
        <!-- Offsets from the top and bottom -->
 <item
  android:top="20dp"
  android:bottom="20dp">
  <shape
   xmlns:android="http://schemas.android.com/apk/res/android">
   <solid
    android:color="#00ff00" />
  </shape>

 </item>
 <item
  android:top="80dp">
  <!--Blue -->
  <shape
   xmlns:android="http://schemas.android.com/apk/res/android">
   <solid
    android:color="#0000ff" />
  </shape>
 </item>
</layer-list>

The problem is, I am unsure of the max value of density independant pixels. For this to work, the bottom item offest would need to be (max dp value-20). I have tried to assume the max is 100, and also assume the max is 160 (from the documentation), but neither of these work.

Any ideas?

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文