If you think the Android project birthday-adapter listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Java Source Code
/*
* Copyright (C) 2012-2013 Dominik Schrmann <dominik@dominikschuermann.de>
*/*www.java2s.com*/
* This file is part of Birthday Adapter.
*
* Birthday Adapter is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Birthday Adapter is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Birthday Adapter. If not, see <http://www.gnu.org/licenses/>.
*
*/package org.birthdayadapter.ui;
import org.birthdayadapter.R;
import org.sufficientlysecure.htmltextview.HtmlTextView;
import android.annotation.TargetApi;
import android.app.Fragment;
import android.os.Build;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
@TargetApi(Build.VERSION_CODES.ICE_CREAM_SANDWICH)
publicclass HelpFragment extends Fragment {
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.help_fragment, container, false);
HtmlTextView text = (HtmlTextView) view.findViewById(R.id.help_text);
// load html into textview
text.setHtmlFromRawResource(getActivity(), R.raw.help);
// no flickering when clicking textview for Android < 4
text.setTextColor(getResources().getColor(android.R.color.secondary_text_dark_nodisable));
return view;
}
}