gpt4 book ai didi

android - 向 PreferenceFragment 添加自定义布局

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:13:16 25 4
gpt4 key购买 nike

我有一个带有偏好屏幕层次结构的偏好 fragment 。我想添加一个自定义布局来定义“关于作者”部分,将 imageview 添加到元素和链接(浏览器的 Intent )。我进行了搜索,但没有找到有关此主题的任何资源。

最佳答案

在您的首选项 xml 文件 (res/xml/prefs.xml) 中,添加一个带有自定义布局的 Preference:

<Preference
android:layout="@layout/custom_preference"/>

layout/custom_preference.xml 示例,带有一个 ImageView 和一个 TextView,带有一个将在浏览器中打开的链接:

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">

<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_book" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="http://www.mylink.com"
android:autoLink="all"/>
</LinearLayout>

就是截图中的最后一个偏好: preference screen with custom preference

关于android - 向 PreferenceFragment 添加自定义布局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40333452/

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