Back to project page com.elsewhat.android.slideshow.
The source code is released under:
Copyright (C) 2012 Dagfinn Parnas <dagfinn.parnas@gmail.com> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Sof...
If you think the Android project com.elsewhat.android.slideshow 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.elsewhat.android.slideshow.api; /* ww w . jav a 2s . c o m*/ import android.content.Context; import android.preference.Preference; import android.util.AttributeSet; /** * Preference which only displays a title and a summary with no action * * @author dagfinn.parnas * */ public class ReadOnlyPreference extends Preference { public ReadOnlyPreference(Context context, AttributeSet attrs) { super(context, attrs); // TODO Auto-generated constructor stub } public ReadOnlyPreference(Context context) { super(context, null); // TODO Auto-generated constructor stub } }