Open robertelo opened 7 years ago
Did you solve it?
Did you solve it? Unfortunately no
Hi @robertelo , @BrandonZV19
Try to use https://github.com/Vorlonsoft/AndroidRate It should work...
@AlexanderLS what would be the id for ViewGroup in view inflation.? Is this is id of the parent tag of custom layout? View view = inflater.inflate(R.layout.custom_dialog, (ViewGroup)findViewById(R.id.ratedialog)); Thanks
Did anyone manage to resolve this?
Hello, I tried adding this in main_activity ` .setTitle(R.string.new_rate_dialog_title) .setTextLater(R.string.new_rate_dialog_later) .setTextNever(R.string.new_rate_dialog_never) .setTextRateNow(R.string.new_rate_dialog_ok) .monitor();
and this in custom_dialog.xml `<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="wrap_content" android:layout_height="wrap_content" android:minWidth="280dp" android:orientation="vertical" android:padding="10dp" android:id="@+id/ratedialog" android:layout_gravity="center">
`
But it's not working, i can't see the new layout overlapping the apprater dialog. Please help