diff options
author | Arne Schwabe <arne@rfc2549.org> | 2012-04-21 18:36:35 +0200 |
---|---|---|
committer | Arne Schwabe <arne@rfc2549.org> | 2012-04-21 18:36:35 +0200 |
commit | 488a41cc60636298581c2b44b4706b259fc98a36 (patch) | |
tree | ba247a01a310ca7b68343e655e0d7b550597de46 /src/de/blinkt/openvpn/VPNConfigPreference.java | |
parent | 89369d1e8651514ad295b11e6e1f5ee00a402168 (diff) |
wip
Diffstat (limited to 'src/de/blinkt/openvpn/VPNConfigPreference.java')
-rw-r--r-- | src/de/blinkt/openvpn/VPNConfigPreference.java | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/de/blinkt/openvpn/VPNConfigPreference.java b/src/de/blinkt/openvpn/VPNConfigPreference.java new file mode 100644 index 00000000..3afcfccb --- /dev/null +++ b/src/de/blinkt/openvpn/VPNConfigPreference.java @@ -0,0 +1,15 @@ +package de.blinkt.openvpn; + +import android.content.Context; +import android.preference.CheckBoxPreference; +import android.preference.Preference; +import android.util.AttributeSet; + +public class VPNConfigPreference extends Preference { + + public VPNConfigPreference(Context context, AttributeSet attrs) { + super(context, attrs); + setWidgetLayoutResource(R.layout.vpn_preference_layout); + } + +} |