|
|
@@ -12,6 +12,7 @@ public class PasswordView extends LinearLayout {
|
|
|
public final static int ICON_SIZE = 128;
|
|
|
protected final ImageView vIcon;
|
|
|
protected final TextView vName;
|
|
|
+ protected final String fFullname;
|
|
|
|
|
|
public static final int TYPE_DIR = 1;
|
|
|
public static final int TYPE_PARENT = 2;
|
|
|
@@ -26,6 +27,7 @@ public class PasswordView extends LinearLayout {
|
|
|
|
|
|
public PasswordView(Context ctx, int type, String name) {
|
|
|
super(ctx);
|
|
|
+ fFullname = name;
|
|
|
vIcon = new ImageView(ctx);
|
|
|
if ((type & TYPE_PARENT) != 0)
|
|
|
vIcon.setImageResource(android.R.drawable.ic_media_previous);
|