Back to project page rgb-tool.
The source code is released under:
Apache License
If you think the Android project rgb-tool listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.fastebro.androidrgbtool.fragments; // w ww . j a v a2 s . c om import android.os.Bundle; import android.preference.PreferenceFragment; import com.fastebro.androidrgbtool.R; public class AboutFragment extends PreferenceFragment { public AboutFragment() {} @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); addPreferencesFromResource(R.xml.about); } }