我们正在将WordPress与Apple News集成在一起。我们可以显示照片标题,但无法显示照片信用。 Apple News文档仅提供标题。但是,AN中也很少有发行商显示出荣誉。 任何提示将为您提供充分的帮助。
https://developer.apple.com/documentation/apple_news/photo#properties
答案 0 :(得分:0)
Apple News Photo组件中的“ caption”属性实际上仅用于访问目的,因为当全屏显示照片时,它不会显示在图像下方。您需要做的是在Photo组件下的Caption component。您可以看到此here in the Apple News documentation的示例。
答案 1 :(得分:0)
Apple News允许您使用HTML和Markdown进行此操作,但是您也可以使用 <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MapsActivity"
android:orientation="vertical"
android:background="#1a152d">
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Stop Map"
android:id="@+id/stop"/>
<fragment
android:id="@+id/map"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MapsActivity" />
</LinearLayout>
。只需注意您要样式开始和结束的位置(字符数)即可。
在这种情况下,第一个开括号从字符号23开始,到字符43结束。
inlineTextStyles
来源: https://developer.apple.com/documentation/apple_news/inlinetextstyle