Back to project page temaki.
The source code is released under:
Apache License
If you think the Android project temaki 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.jmartin.temaki.settings; /*from w ww .j av a 2 s .c om*/ import android.content.Context; import android.preference.DialogPreference; import android.util.AttributeSet; import com.jmartin.temaki.R; /** * Created by jeff on 2013-08-21. */ public class InformationDialogPreference extends DialogPreference { public InformationDialogPreference(Context context, AttributeSet attrs) { super(context, attrs); setDialogLayoutResource(R.layout.information_dialog); setPositiveButtonText(android.R.string.ok); setNegativeButtonText(null); setDialogIcon(null); } }