andriod新手,正在尝试设置视图。基于共享偏好而消失。然而,它并没有消失!我打碎了什么?!
编辑 所以,在测试了下面的问题是设置没有正确完成之后...因此,现在已经修复了这个问题,让我们再试一次。他是我的 onCreate...当我删除textview临时代码时,它工作正常,并通过Toast显示pref中的更改,但是当代码在那里时,应用程序崩溃了。
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
SharedPreferences mPreferences = PreferenceManager.getDefaultSharedPreferences(getActivity());
// Inflate the layout for this fragment
Boolean symptothermal = mPreferences.getBoolean("symptothermal", true);
if (!symptothermal) {
Context context = getActivity().getApplicationContext();
Toast.makeText(context, "Hello toast 1!", Toast.LENGTH_LONG).show();
} else {
Context context = getActivity().getApplicationContext();
Toast.makeText(context, "Hello toast 2!", Toast.LENGTH_LONG).show();
}
if (!symptothermal) {
TextView temp = (TextView) getView().findViewById(R.id.temp);
temp.setVisibility(View.GONE);
}
}
他是XML供参考:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<RelativeLayout
android:id="@+id/relativeLayout1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="0.23" >
<!-- Date Text -->
<EditText
android:id="@+id/dateselected"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_marginTop="10dp"
android:layout_toLeftOf="@+id/pickdate"
android:gravity="center"
android:inputType="date" />
<!-- DatePicker button -->
<Button
android:id="@+id/pickdate"
android:layout_width="80dp"
android:layout_height="wrap_content"
android:layout_alignBaseline="@+id/dateselected"
android:layout_alignBottom="@+id/dateselected"
android:layout_alignParentRight="true"
android:src="@drawable/ic_datepicker"
android:text="@string/date" />
<!-- Temp Label -->
<EditText
android:id="@+id/temp"
android:layout_width="192dp"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@+id/pickdate"
android:ems="10"
android:inputType="text"
android:text="@string/temp"
android:clickable="false"
android:cursorVisible="false"
android:focusable="false"
android:focusableInTouchMode="false"
android:layout_marginTop="10dp">
</EditText>
<!-- Temp field -->
<EditText
android:id="@+id/tempvalue"
android:layout_width="80dp"
android:layout_height="wrap_content"
android:layout_below="@+id/pickdate"
android:layout_toRightOf="@+id/dateselected"
android:ems="10"
android:inputType="number"
android:layout_marginTop="10dp" />
</RelativeLayout>
<!-- Notes Field -->
<EditText
android:id="@+id/chartingnote"
android:layout_width="wrap_content"
android:layout_height="0dip"
android:layout_weight="0.58"
android:ems="20"
android:gravity="top|center_horizontal"
android:hint="@string/hintNote"
android:inputType="textMultiLine" />
<!-- Update Button -->
<Button
android:id="@+id/chartingupdate"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/charting_update" />
</LinearLayout>
编辑@daniel_c05:
package com.projectcaruso.naturalfamilyplaning;
import com.projectcaruso.naturalfamilyplanning.R;
import android.app.DatePickerDialog.OnDateSetListener;
import android.content.Context;
import android.content.SharedPreferences;
import android.os.Bundle;
import android.preference.PreferenceManager;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.DatePicker;
import android.widget.TextView;
import android.widget.Toast;
public class ChartingFragment extends Fragment implements OnDateSetListener {
SharedPreferences mPreferences = PreferenceManager.getDefaultSharedPreferences(getActivity());
Boolean symptothermal = mPreferences.getBoolean("symptothermal", true);
@Override
public void onDateSet(DatePicker view, int year, int monthOfYear, int dayOfMonth) {
// TODO Auto-generated method stub
}
public void showDatePickerDialog(View v) {
DatePickerFragment newFragment = new DatePickerFragment();
newFragment.show(getChildFragmentManager(), "datePicker");
}
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
if (!symptothermal) {
Context context = getActivity().getApplicationContext();
Toast.makeText(context, "Hello toast 1!", Toast.LENGTH_LONG).show();
} else {
Context context = getActivity().getApplicationContext();
Toast.makeText(context, "Hello toast 2!", Toast.LENGTH_LONG).show();
}
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
//Inflate a view
View view = inflater.inflate(R.layout.fragment_charting, null);
//now you can initialize the TextView
//notice how we don't call getView()? :P
TextView temp = (TextView) view.findViewById(R.id.temp);
if (!symptothermal) {
//Hide the view if necessary
temp.setVisibility(View.GONE);
}
return view;
}
}
日志:
05-08 14:10:55.042: E/AndroidRuntime(22900): FATAL EXCEPTION: main
05-08 14:10:55.042: E/AndroidRuntime(22900): java.lang.NullPointerException
05-08 14:10:55.042: E/AndroidRuntime(22900): at android.preference.PreferenceManager.getDefaultSharedPreferencesName(PreferenceManager.java:371)
05-08 14:10:55.042: E/AndroidRuntime(22900): at android.preference.PreferenceManager.getDefaultSharedPreferences(PreferenceManager.java:366)
05-08 14:10:55.042: E/AndroidRuntime(22900): at com.projectcaruso.naturalfamilyplaning.ChartingFragment.<init>(ChartingFragment.java:21)
05-08 14:10:55.042: E/AndroidRuntime(22900): at com.projectcaruso.naturalfamilyplaning.MenuFragment.onListItemClick(MenuFragment.java:36)
05-08 14:10:55.042: E/AndroidRuntime(22900): at android.support.v4.app.ListFragment$2.onItemClick(ListFragment.java:58)
05-08 14:10:55.042: E/AndroidRuntime(22900): at android.widget.AdapterView.performItemClick(AdapterView.java:298)
05-08 14:10:55.042: E/AndroidRuntime(22900): at android.widget.AbsListView.performItemClick(AbsListView.java:1100)
05-08 14:10:55.042: E/AndroidRuntime(22900): at android.widget.AbsListView$PerformClick.run(AbsListView.java:2749)
05-08 14:10:55.042: E/AndroidRuntime(22900): at android.widget.AbsListView$1.run(AbsListView.java:3423)
05-08 14:10:55.042: E/AndroidRuntime(22900): at android.os.Handler.handleCallback(Handler.java:725)
05-08 14:10:55.042: E/AndroidRuntime(22900): at android.os.Handler.dispatchMessage(Handler.java:92)
05-08 14:10:55.042: E/AndroidRuntime(22900): at android.os.Looper.loop(Looper.java:137)
05-08 14:10:55.042: E/AndroidRuntime(22900): at android.app.ActivityThread.main(ActivityThread.java:5041)
05-08 14:10:55.042: E/AndroidRuntime(22900): at java.lang.reflect.Method.invokeNative(Native Method)
05-08 14:10:55.042: E/AndroidRuntime(22900): at java.lang.reflect.Method.invoke(Method.java:511)
05-08 14:10:55.042: E/AndroidRuntime(22900): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:793)
05-08 14:10:55.042: E/AndroidRuntime(22900): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:560)
05-08 14:10:55.042: E/AndroidRuntime(22900): at dalvik.system.NativeStart.main(Native Method)
< code>onCreateView()用于创建视图。当< code>onCreateView返回时,视图被创建。有一个方法< code>onViewCreated用于修改视图。
文档中的详细信息: Fragment#onViewCreated
您试图在创建视图之前将其设置为消失,您的onCreateView还没有返回任何内容,但是在if它消失并完成您的inflater.inflate
并返回视图之后。您应该在onStart
方法中执行该检查。
根据我的理解,您正在为这段代码使用一个片段。
因此,请注意片段的生命周期与活动的生命周期不同。在onCreate
期间,您不能操作片段上的UI元素。
你使用这个:
if (!symptothermal) {
TextView temp = (TextView) getView().findViewById(R.id.temp);
temp.setVisibility(View.GONE);
}
让我们稍微改变一下,
步骤 1:将布尔交热
更改为实例变量,而不是 onCreate
的内部变量。因此,使其在不同的生命周期中可用。
第二步:为onCreate
保留相同的代码,除了您不调用更改TextView可见性的代码之外,我们将将其移动到其他地方。
第三步:改为重写onCreateView。
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
//Inflate a view
View view = inflater.inflate(R.layout.your_layout, null);
//now you can initialize the TextView
//notice how we don't call getView()? :P
TextView temp = (TextView) view.findViewById(R.id.temp);
if (!symptothermal) {
//Hide the view if necessary
temp.setVisibility(View.GONE);
}
return view;
}
这应该很有效。
编辑
所以我注意到你这样做了:
SharedPreferences mPreferences = PreferenceManager.getDefaultSharedPreferences(getActivity());
Boolean symptothermal = mPreferences.getBoolean("symptothermal", true);
这就是问题所在,您在任何生命周期之外调用GetDefaultSharedReference,这就是它失败的原因。
请参阅此内容:
public class ChartingFragment extends Fragment implements OnDateSetListener {
//Don't initialize the instance variables yet
SharedPreferences mPreferences;
Boolean symptothermal;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
//Here's a good moment to initialize
mPreferences = PreferenceManager.getDefaultSharedPreferences(getActivity());
symptothermal = mPreferences.getBoolean("symptothermal", true);
if (!symptothermal) {
Context context = getActivity().getApplicationContext();
Toast.makeText(context, "Hello toast 1!", Toast.LENGTH_LONG).show();
} else {
Context context = getActivity().getApplicationContext();
Toast.makeText(context, "Hello toast 2!", Toast.LENGTH_LONG).show();
}
}
}
问题内容: 我在这个LinearLayout中有一个LinearLayout和ImageView。 ImageView有翻译效果。 动画有效,但是当ImageView移至LinearLayout之外时,动画消失了。 我如何在不修改LinearLayout高度的情况下进行修复。 问题答案: 找到ImageView所属的ViewGroup并应用ViewGroup.setClipChildren(fal
视图可见性状态的视图和之间的区别是什么?
问题内容: 我想刷新一个列表视图。当我从另一个类获取值时,我希望它将其更新为列表视图。我正在创建用于刷新列表的线程,但出现异常: 如何进行? 问题答案: 无需尝试刷新视图以更新列表,只需采用Adapter对象并调用notifyDataSetChanged()API。
我有一个android布局,它有一个,里面有很多元素。在的底部有一个,然后由适配器填充。 我遇到的问题是,android将从中排除,因为已经具有可滚动的功能。我希望与内容一样长,并且主滚动视图是可滚动的。 我怎样才能达到这种行为呢? 下面是我的主要布局: 然后以编程方式将组件添加到具有ID:的linearlayour中。下面是加载到LinearLayout中的一个视图。就是这个给我卷轴带来麻烦的。
我有一个当用户滚动时显示隐藏单元格的tableView。不确定为什么会出现这种情况。 在视图中DidLoad() 用户点击按钮后,表格将以可设置动画的方式展开。 在 func tableView(_ tableView: UITableView, cellForRowAt 索引路径: 索引路径) - 当我滚动时,所有单元格都被隐藏。我看到它们是在单元格中创建的,但是,它们不会出现在我的屏幕上。为什
我需要在我的Android应用程序中添加日历视图。我需要用户能够通过点击传统日历中的某一天来选择日期,该日历一次显示一个月,并且用户可以通过一些简单的方式在月份之间导航,例如点击按钮或滑动。我对造型不挑剔。此应用程序在智能手机格式的设备上运行。 当我在堆栈溢出中搜索这个问题时,首先会出现这个问题,它说除非您想编写自己的或使用第三方开放源代码,否则没有这样的东西。但这是4年前的事了。我最近看到过更多