- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我尝试为我的 Android 应用程序创建一个设置 Activity ,但是当我单击应该打开设置 Activity 的按钮时,我收到以下错误,并且我的应用程序返回到我的主要 Activity 。
错误:
agment.onCreatePreferences(SettingsFragment.java:10)
at androidx.preference.PreferenceFragmentCompat.onCreate(PreferenceFragmentCompat.java:228)
错误提到的文件:
PreferenceFragmentCompat.java
... // Fallback to default theme.
theme = R.style.PreferenceThemeOverlay;
}
mStyledContext = new ContextThemeWrapper(getActivity(), theme);
mPreferenceManager = new PreferenceManager(mStyledContext);
mPreferenceManager.setOnNavigateToScreenListener(this);
final Bundle args = getArguments();
final String rootKey;
if (args != null) {
rootKey = getArguments().getString(ARG_PREFERENCE_ROOT);
} else {
rootKey = null;
}
onCreatePreferences(savedInstanceState, rootKey); <---line 228
} ...
设置 fragment
package com.example.padmw;
import android.os.Bundle;
import androidx.preference.PreferenceFragmentCompat;
public class SettingsFragment extends PreferenceFragmentCompat {
@Override
public void onCreatePreferences(Bundle savedInstanceState, String rootKey) {
super.onCreate(savedInstanceState);
addPreferencesFromResource(R.xml.preferences);
}
}
还有我的设置 Activity
package com.example.padmw;
import androidx.annotation.RequiresApi;
import androidx.appcompat.app.AppCompatActivity;
import android.os.Build;
import android.os.Bundle;
import java.util.Objects;
public class SettingsActivity extends AppCompatActivity {
@RequiresApi(api = Build.VERSION_CODES.KITKAT)
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_settings);
Objects.requireNonNull(getSupportActionBar()).setTitle("Settings");
if(findViewById(R.id.fragment_container)!= null)
{
if(savedInstanceState !=null)
return;
getSupportFragmentManager()
.beginTransaction().add(R.id.fragment_container,new SettingsFragment()).commit();
}
}
}
我还在“R.style.PreferenceThemeOverlay;”的 PreferenceFragmentCompat.java 中收到“无法解析符号 'R'”
那么问题是什么,我应该做什么?如果您需要更多信息,请告诉我。
我补充说,这些错误是在我用 getSupportFragmentManager 替换 getFragmentManager 后出现的在这里:
package com.example.padmw;
import androidx.annotation.RequiresApi;
import androidx.appcompat.app.AppCompatActivity;
import android.os.Build;
import android.os.Bundle;
import java.util.Objects;
public class SettingsActivity extends AppCompatActivity {
@RequiresApi(api = Build.VERSION_CODES.KITKAT)
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_settings);
Objects.requireNonNull(getSupportActionBar()).setTitle("Settings");
if(findViewById(R.id.fragment_container)!= null)
{
if(savedInstanceState !=null)
return;
getSupportFragmentManager()
.beginTransaction().add(R.id.fragment_container,new SettingsFragment()).commit();
}
}
}
最佳答案
删除“super.onCreate(savedInstanceState);”行后,错误消失了
关于java - agment.onCreatePreferences 在 androidx.preference.PreferenceFragmentCompat.onCreate(PreferenceFragmentCompat.java :228),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57746863/
我在尝试为我的 android 应用程序开发 nested 设置时遇到 PreferenceFragmentCompat 问题。我有 Fragment 调用 Settings Fragment 我有以
我尝试为我的 Android 应用程序创建一个设置 Activity ,但是当我单击应该打开设置 Activity 的按钮时,我收到以下错误,并且我的应用程序返回到我的主要 Activity 。 错误
我是一名优秀的程序员,十分优秀!