- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在主 Activity 中使用可滑动的 fragment 。
我无法弄清楚如何进行查找文件的调用,然后调用 Android Switch 上的 setChecked(boolean)
方法,cb1
,根据文件是否存在。
我目前已将其设置为当应用程序启动时,会显示一个弹出窗口并且用户单击“确定”,这会触发对文件的检查并设置检查的操作。
澄清一下,我调用的所有操作 do 都按预期工作,除非它在 onCreate()
中。
如果它在 onCreate()
中,logcat 将在第一个 setChecked(boolean)
的任何一行上显示由 DeviceSetup.setup
引起的 NullPointerException > 位于。
MainActivity#onCreate()
:
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
ChangeTheme.userchoice(this);
DeviceState.startup(this);
setContentView(R.layout.activity_main);
// Create the adapter that will return a fragment for each of the three
// primary sections of the app.
mSectionsPagerAdapter = new SectionsPagerAdapter(getSupportFragmentManager());
// Set up the ViewPager with the sections adapter.
mViewPager = (ViewPager) findViewById(R.id.pager);
mViewPager.setAdapter(mSectionsPagerAdapter);
mViewPager.setOffscreenPageLimit(3);
mViewPager.setCurrentItem(1);
}
DeviceState
类:
public class DeviceState extends MainActivity {
public static void startup(final MainActivity activity) {
AlertDialog alertDialog = new AlertDialog.Builder(activity).create();
alertDialog.setTitle("Welcome");
alertDialog.setMessage("Select Ok to continue");
alertDialog.setButton("Ok", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
Button startup = (Button) activity.findViewById(R.id.startup);
startup.performClick(); /* <<<THAT BUTTON TRIGGERS "SETUP" BELOW */
Rooted.rooted(activity);
}
});
alertDialog.show();
}
public static void setup(MainActivity activity) {
File file1 = new File("/system/app/somerandom.apk");
if (file1.exists()) {
cb1.setChecked(true);
} else {
cb1.setChecked(false);
}
}
fragment
类:
public class Fragments extends FragmentActivity {
public static class FragMods extends Fragment {
/**
* The fragment argument representing the section number for this
* fragment.
*/
@Override
public void onSaveInstanceState(Bundle outState) {
outState.putString("BUGFIX", "BUGFIX");
super.onSaveInstanceState(outState);
}
@Override
public View onCreateView(LayoutInflater inflater,
ViewGroup container, Bundle savedInstanceState) {
View rootView = inflater.inflate(
R.layout.fragment_mods, container, false);
return rootView;
}
}
public static class FragExtras extends Fragment {
/**
* The fragment argument representing the section number for this
* fragment.
*/
public FragExtras() {}
@Override
public void onSaveInstanceState(Bundle outState) {
outState.putString("BUGFIX", "BUGFIX");
super.onSaveInstanceState(outState);
}
@Override
public View onCreateView(LayoutInflater inflater,
ViewGroup container, Bundle savedInstanceState) {
View extrasView = inflater.inflate(
R.layout.fragment_extras, container, false);
return extrasView;
}
}
public static class FragCred extends Fragment {
/**
* The fragment argument representing the section number for this
* fragment.
*/
public FragCred() {}
@Override
public void onSaveInstanceState(Bundle outState) {
outState.putString("BUGFIX", "BUGFIX");
super.onSaveInstanceState(outState);
}
@Override
public View onCreateView(LayoutInflater inflater,
ViewGroup container, Bundle savedInstanceState) {
View creditView = inflater.inflate(
R.layout.fragment_credit, container, false);
return creditView;
}
}
}
最佳答案
对 fragment 内的任何 View 对象的更新应该使用 fragment 的 View 对象完成,在您的情况下为 rootView。
//使用 fragment View 对象,即 rootView,找到您要更新的 View 并进行更新。
Checkbox cb = (Checkbox) rootView.findViewById(R.id.checkBoxId);
//在cb上做更新
该 Action 在 Fragment Activity 的 onCreate() 中不起作用,如在 onCreate() 方法中,我们有对主要 Activity View 的 View 引用,即 viewPager,它充当不同 fragment View 的容器..
关于android - 使用 FragmentActivity 时,onCreate 中的任何内容都不能为 "setChecked"。,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18367352/
我遇到了一个无法用应用程序的抽屉导航解决的问题。抽屉导航中的链接之一是打开 FragmentActivity(其中包含 ViewPager)。其他链接是 fragment 。现在我已将其设置为启动该
除了使用 Intents 启动方法外,还有其他方法可以调用 FragmentActivity 中的方法吗?有人可以帮忙吗? 代码如下: class MainActiviy extends Ac
在我的应用程序中,它们不是 FragmentActivity.java,但崩溃报告给了我以下错误 Fatal Exception: android.content.ActivityNotFoundEx
我是 Java 和 Android 的初学者,我认为这更像是一个 Java 问题,因为它在 Android 中表现出来。 我正在使用 Android 支持包 (android.support.v4.a
我有两项 Activity : MainActivity,它扩展了 FragmentActivity 并具有 ViewActivity,它只是一个 Activity,以 MainActivity 作为
我对 FragmentActivity 类有疑问当我导入包时: import android.support.v4.app.FragmentActivity; 当我将其放入代码中时,导入 Fragme
今天我尝试创建一个带有 fragment Activity 的项目。我有一个 MainActivity 范围 FragmentActivity。 MainActvity 有布局。 activity_m
我在使用 FragmentActivity 和 SupportMapFragment 时遇到了一些问题。 map 的缩放比例很不稳定。这是代码: public class GoogleMapActiv
Activity 在导入 FragmentActivity 时显示错误。 import android.support.v4.app.FragmentActivity; import andr
我的代码中有一个具有 ListView 的 Activity ,我通过适配器类控制此 ListView 。每个 ListView 中都有一个 TextView,我想通过单击每个项目(TextView)
我正在尝试创建一个使用 fragment 的应用程序,但是当我尝试在 FragmentActivity 中显示一个 Fragment 时,操作栏没有出现。 fragment Activity 类: p
我可以使用下面的代码转换到 Fragment 类,但是如何使用相同的代码转换到 FragmentActivity。 FragmentActivity activity = new ABC(); //
您好,您可以在这里查看我的代码。我的问题是:使用这段代码,我的 EditText 和我的 Button 字段为空,所以我无法对它们执行任何操作。 请你帮我访问这个按钮。对于由 eclipse 自动生成
我尝试将 Android 兼容性库(或现在称为支持库)v4 用于 pre-honeycomb android 设备。我明白,我应该使用 FragmentActivity 类,而不是使用 Fragmen
我的主题不工作我已经看到了这个How do I change the background color of the ActionBar of an ActionBarActivity using X
您好,我正在尝试将 Intent 传递给 FragmentActivity,但它不起作用。 Activity 在 FragmentActivity 的初始化中关闭。这是 Activity : publ
在我的应用程序中,我有选项卡,但现在我需要添加 Sherlock Actionbar 我知道我需要使用 extends SherlockActivity 但早期我有 FragmentActivity
我正在尝试将 ActionBar 按钮添加到 FragmentActivity,但我无法弄清楚我做错了什么。运行应用程序时,我看到的只是 ActionBar 上的默认菜单按钮,而不是我的按钮。 fra
我正在扩展类中的 FragmentActivity,该类用作我的其他 Activity 的基础 Activity 。我的问题是当我从我的基本 Activity 扩展我的其他 Activity 时,我失
我正在使用 android 示例,FragmentTabs . 比如说,有 4 个选项卡(A、B、C、D)。我使用此代码将选项卡 fragment (A) 替换为另一个 (E) FragmentTra
我是一名优秀的程序员,十分优秀!