We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As u can see preview below here image selected drawable seem like diamond.
Below here code xml for selected.xml
<?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" android:innerRadius="0dp" android:shape="oval" android:thickness="2dp" android:useLevel="false"> <solid android:color="@android:color/black" /> </shape>
Below here code xml for unselected.xml
<?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" android:innerRadius="0dp" android:shape="oval" android:thickness="4dp" android:useLevel="false"> <solid android:color="@android:color/darker_gray" /> </shape>
So far, unselected drawable ok.
The text was updated successfully, but these errors were encountered:
Further i suspect this code has problem.
setOrientation(LinearLayout.HORIZONTAL); FrameLayout.LayoutParams layoutParams = new FrameLayout.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT); layoutParams.gravity = Gravity.BOTTOM | Gravity.CENTER_HORIZONTAL; int margin = getResources().getDimensionPixelSize(R.dimen.default_indicator_margins) * 2; layoutParams.setMargins(0, 0, 0, margin); setLayoutParams(layoutParams);
under class SlideIndicatorsGroup. Is there way I can edit this class.
Sorry, something went wrong.
No branches or pull requests
As u can see preview below here image selected drawable seem like diamond.
Below here code xml for selected.xml
<?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" android:innerRadius="0dp" android:shape="oval" android:thickness="2dp" android:useLevel="false"> <solid android:color="@android:color/black" /> </shape>
Below here code xml for unselected.xml
<?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" android:innerRadius="0dp" android:shape="oval" android:thickness="4dp" android:useLevel="false"> <solid android:color="@android:color/darker_gray" /> </shape>
So far, unselected drawable ok.
The text was updated successfully, but these errors were encountered: