mirror of
https://github.com/Kunzisoft/KeePassDX.git
synced 2025-12-04 15:49:33 +01:00
18 lines
478 B
Java
18 lines
478 B
Java
package com.keepassdroid.adapters;
|
|
|
|
import android.view.View;
|
|
import android.widget.ImageView;
|
|
import android.widget.TextView;
|
|
|
|
import com.kunzisoft.keepass.R;
|
|
|
|
class EntryViewHolder extends BasicViewHolder {
|
|
|
|
EntryViewHolder(View itemView) {
|
|
super(itemView);
|
|
container = itemView.findViewById(R.id.entry_container);
|
|
icon = (ImageView) itemView.findViewById(R.id.entry_icon);
|
|
text = (TextView) itemView.findViewById(R.id.entry_text);
|
|
}
|
|
}
|