Joachim Reiß

Results 5 comments of Joachim Reiß

no I ended up not using this library any longer sorry.

@josmo you can use this cardview layout and implement your own RecyclerView ``` xml ``` Just make sure to use AppCompatActivity so that the Button will be materialized and has...

yeah ok, the NavigationDrawerAdapter needs the to be updated as follows: ``` java public ViewHolder(View itemView) { super(itemView); textView = (TextView) itemView.findViewById(R.id.item_name); if (Build.VERSION.SDK_INT >= 11) { textView.setBackgroundDrawable(Utils.getDrawableFromAttr(context, R.attr.selectableItemBackground)); }...

You would be able to use preference fragments that are also supported on older devices

``` @Override public void onConfigurationChanged(Configuration newConfig) { super.onConfigurationChanged(newConfig); AndroidUtilities.checkDisplaySize(); } ```