Embed Listview into Preferences in Android
问题 I need to show a list in Preferences view, so I created my own class (inherit of Preference ) and then set it like this: @Override protected View onCreateView(ViewGroup parent){ cards = new ArrayList<String>(); // Test cards.add("4859-2368957415"); cards.add("4859-5987412598"); LinearLayout layout = new LinearLayout(getContext()); LinearLayout.LayoutParams params = new LinearLayout.LayoutParams( LinearLayout.LayoutParams.WRAP_CONTENT,LinearLayout.LayoutParams.WRAP_CONTENT); layout