gpt4 book ai didi

android - 在首选项设置中膨胀布局

转载 作者:行者123 更新时间:2023-12-04 11:29:02 24 4
gpt4 key购买 nike

我有一个自定义布局,它有一个 textview 和 ratingbar ,然后我将布局设置为我的偏好的 View ,问题是我试图在我的偏好 fragment 中膨胀 View 并设置 ratingbar onclick ,我放了一个日志来查看如果它被点击,但没有发生任何事情

  • 这是我的偏好

  • <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto">

    <Preference
    android:title="@string/YourPreferredLanguage"
    android:icon="@drawable/ic_baseline_language_24" />

    <CheckBoxPreference
    android:title="@string/french"
    android:key="french"
    />

    <CheckBoxPreference
    android:title="@string/portuguese"
    android:key="portuguese"
    />

    <Preference
    android:title="Rate Our App"
    android:icon="@drawable/ic_baseline_stars_24"
    />

    <PreferenceCategory
    android:layout="@layout/ratinglayout"/> //this is my custom layout

    </PreferenceScreen>
  • 这是我的布局

  • <?xml version="1.0" encoding="utf-8"?>
    <androidx.constraintlayout.widget.ConstraintLayout
    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="wrap_content">

    <TextView
    android:id="@+id/ratingtext"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginStart="75dp"
    android:layout_marginTop="16dp"
    android:layout_marginBottom="20dp"
    android:text="Rate "
    android:textColor="@android:color/black"
    android:textSize="16sp"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent" />

    <RatingBar
    android:id="@+id/ratingBar"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginTop="8dp"
    android:numStars="0"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintHorizontal_bias="0.75"
    app:layout_constraintStart_toEndOf="@+id/ratingtext"
    app:layout_constraintTop_toTopOf="parent"
    app:layout_constraintVertical_bias="0.0" />

    </androidx.constraintlayout.widget.ConstraintLayout>
    *我如何实现它的代码 fragment
    class SettingsFragment : PreferenceFragmentCompat() {
    override fun onCreatePreferences(savedInstanceState: Bundle?, rootKey: String?) {
    setPreferencesFromResource(R.xml.settingspreferences,rootKey)

    val view = LayoutInflater.from(requireContext()).inflate(R.layout.ratinglayout,null,false)
    val ratingbars = view.findViewById<RatingBar>(R.id.ratingBar)
    ratingbars.setOnRatingBarChangeListener { ratingBar, rating, fromUser ->
    Log.d("TAG","Rating is " + rating) // when i click on rating bar , nothing happens
    }
    }
    任何帮助将不胜感激,谢谢。

    最佳答案

    除了我上面的评论,如果您只想访问该首选项。
    这样做如下

    override fun onCreatePreferences(savedInstanceState: Bundle?, rootKey: String?) {
    setPreferencesFromResource(R.xml.settingspreferences,rootKey)
    getPreferenceScreen()
    .getPreference(4)
    .setOnPreferenceClickListener { preference - > // handle click
    }
    }
    请注意,您正在将布局设置为首选项类别,这并不是您想要使用它的目的,正确的方法是子类化首选项类并赋予它您想要的行为,然后您可以直接在首选项屏幕中使用它

    关于android - 在首选项设置中膨胀布局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62573526/

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