diff --git a/src/frontends/android/res/layout/profile_list_item.xml b/src/frontends/android/res/layout/profile_list_item.xml
new file mode 100644
index 000000000..f55c8357a
--- /dev/null
+++ b/src/frontends/android/res/layout/profile_list_item.xml
@@ -0,0 +1,49 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/frontends/android/res/values/strings.xml b/src/frontends/android/res/values/strings.xml
index f4df7613e..83c09a6a1 100644
--- a/src/frontends/android/res/values/strings.xml
+++ b/src/frontends/android/res/values/strings.xml
@@ -1,7 +1,27 @@
+
+
+ strongSwan VPN Client
Hello World, strongSwanActivity!
- strongSwan
+
+ Gateway:
+ Username:
\ No newline at end of file
diff --git a/src/frontends/android/src/org/strongswan/android/ui/adapter/VpnProfileAdapter.java b/src/frontends/android/src/org/strongswan/android/ui/adapter/VpnProfileAdapter.java
new file mode 100644
index 000000000..39e3e586a
--- /dev/null
+++ b/src/frontends/android/src/org/strongswan/android/ui/adapter/VpnProfileAdapter.java
@@ -0,0 +1,88 @@
+/*
+ * Copyright (C) 2012 Tobias Brunner
+ * Copyright (C) 2012 Giuliano Grassi
+ * Copyright (C) 2012 Ralf Sager
+ * Hochschule fuer Technik Rapperswil
+ *
+ * This program 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 2 of the License, or (at your
+ * option) any later version. See .
+ *
+ * This program 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.
+ */
+
+package org.strongswan.android.ui.adapter;
+
+import java.util.Collections;
+import java.util.Comparator;
+import java.util.List;
+
+import org.strongswan.android.R;
+import org.strongswan.android.data.VpnProfile;
+
+import android.content.Context;
+import android.view.LayoutInflater;
+import android.view.View;
+import android.view.ViewGroup;
+import android.widget.ArrayAdapter;
+import android.widget.TextView;
+
+public class VpnProfileAdapter extends ArrayAdapter
+{
+ private final int resource;
+ private final List items;
+
+ public VpnProfileAdapter(Context context, int resource,
+ List items)
+ {
+ super(context, resource, items);
+ this.resource = resource;
+ this.items = items;
+ sortItems();
+ }
+
+ @Override
+ public View getView(int position, View convertView, ViewGroup parent)
+ {
+ View vpnProfileView;
+ if (convertView != null)
+ {
+ vpnProfileView = convertView;
+ }
+ else
+ {
+ LayoutInflater inflater = LayoutInflater.from(getContext());
+ vpnProfileView = inflater.inflate(resource, null);
+ }
+ VpnProfile profile = getItem(position);
+ TextView tv = (TextView)vpnProfileView.findViewById(R.id.profile_item_name);
+ tv.setText(profile.getName());
+ tv = (TextView)vpnProfileView.findViewById(R.id.profile_item_gateway);
+ tv.setText(getContext().getString(R.string.profile_gateway_label) + " " + profile.getGateway());
+ tv = (TextView)vpnProfileView.findViewById(R.id.profile_item_username);
+ tv.setText(getContext().getString(R.string.profile_username_label) + " " + profile.getUsername());
+ return vpnProfileView;
+ }
+
+ @Override
+ public void notifyDataSetChanged()
+ {
+ sortItems();
+ super.notifyDataSetChanged();
+ }
+
+ private void sortItems()
+ {
+ Collections.sort(this.items, new Comparator() {
+ @Override
+ public int compare(VpnProfile lhs, VpnProfile rhs)
+ {
+ return lhs.getName().compareToIgnoreCase(rhs.getName());
+ }
+ });
+ }
+}