use of sugar.free.sightremote.adapters.BRProfileAdapter in project SightRemote by TebbeUbben.
the class ChangeActiveBRProfileActivity method onCreate.
@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContent(R.layout.activity_change_active_br_profile);
showManualOverlay();
profileList = findViewById(R.id.profile_list);
profileList.setLayoutManager(new LinearLayoutManager(this));
profileList.setAdapter(adapter = new BRProfileAdapter());
adapter.setListener(this);
adapter.setOnClickListener(this);
}
Aggregations