【问题标题】:Xamarin Forms Fixed Size for an imageXamarin 形成图像的固定大小
【发布时间】:2016-08-28 01:20:26
【问题描述】:

我正在尝试设置图像的高度和宽度并将其设置为固定大小,但是如果我缩小容器(框架、堆栈面板、网格等),图像也会随之缩小。但是我会假设设置高度和宽度(WidthRequest、HeightRequest、MinimumHeightRequest、MinimumWidthRequest)会强制图像保持设置大小......但它不会/

我能做什么...

【问题讨论】:

标签: xamarin xamarin.forms image-size


【解决方案1】:

试试这个;这将使用平台特定尺寸设置图像的宽度和高度,即它将使用 dp 用于 android 和 points 用于 iOS。

<Image IsVisible="true">
          <Image.HeightRequest>
            <OnIdiom x:TypeArguments="x:Double">
              <OnIdiom.Phone>
                <OnPlatform x:TypeArguments="x:Double" iOS="72" Android="100" WinPhone="10" />
              </OnIdiom.Phone>
              <OnIdiom.Tablet>
                <OnPlatform x:TypeArguments="x:Double" iOS="212" Android="140" WinPhone="10" />
              </OnIdiom.Tablet>
            </OnIdiom>
          </Image.HeightRequest>
          <Image.WidthRequest>
            <OnIdiom x:TypeArguments="x:Double">
              <OnIdiom.Phone>
                <OnPlatform x:TypeArguments="x:Double" iOS="125" Android="150" WinPhone="10" />
              </OnIdiom.Phone>
              <OnIdiom.Tablet>
                <OnPlatform x:TypeArguments="x:Double" iOS="265" Android="190" WinPhone="10" />
              </OnIdiom.Tablet>
            </OnIdiom>
          </Image.WidthRequest>
          <Image.Source>
            <OnPlatform x:TypeArguments="ImageSource">
              <OnPlatform.iOS>
                <FileImageSource File="logo.png" />
              </OnPlatform.iOS>
              <OnPlatform.Android>
                <FileImageSource File="logo.png" />
              </OnPlatform.Android>
              <OnPlatform.WinPhone>
                <FileImageSource File="logo.png" />
              </OnPlatform.WinPhone>
            </OnPlatform>
          </Image.Source>
        </Image>

【讨论】:

  • 不幸的是,当您调整页面大小 *(在 UWP 上最容易测试)图像仍然会调整大小。
  • 如果您将图像放在网格中,这也不起作用
猜你喜欢
  • 2019-05-05
  • 2017-05-07
  • 2023-03-28
  • 2011-03-24
  • 1970-01-01
  • 2017-09-20
  • 2015-10-12
  • 2012-04-30
  • 2013-08-12
相关资源
最近更新 更多