Change expandable indicator in ExpandableListView
expandable listview <ExpandableListView android:id=”@+id/expandable_list” android:layout_width=”fill_parent” android:layout_height=”fill_parent” android:groupIndicator=”@drawable/group_indicator” android:transcriptMode=”alwaysScroll” /> setindicator here iam useing setindicator code like this this working nice DisplayMetrics metrics = new DisplayMetrics(); getWindowManager().getDefaultDisplay().getMetrics(metrics); int width = metrics.widthPixels; mExpandableList = (ExpandableListView)findViewById(R.id.expandable_list); mExpandableList.setIndicatorBounds(width – GetPixelFromDips(50), width – GetPixelFromDips(10)); public int GetPixelFromDips(float pixels) { // Get the screen’s density scale final float scale = getResources().getDisplayMetrics().density; … Read more