سؤال

enter image description here

Well I want to show like this guide dialog message at first launch. What is that I dont know

I have try with this code but not looking like it.

<style name="DialogTheme" parent="android:Theme.Dialog">

<item name="android:windowNoTitle">true</item>
<item name="android:windowFullscreen">true</item>
<item name="android:windowIsFloating">true</item>
<item name="android:windowContentOverlay">@null</item>
<item name="android:windowAnimationStyle">@android:style/Animation.Dialog</item>
<item name="android:windowSoftInputMode">stateUnspecified|adjustPan</item>
<item name="android:windowBackground">@android:color/transparent</item>

and in activity

Dialog dialog = new Dialog(this, R.style.DialogTheme);
    dialog.setContentView(R.layout.dialogmesaj);

    dialog.show();
هل كانت مفيدة؟

المحلول

It is showcase view mehmet. Please check out library and example code from here.

https://github.com/amlcurran/ShowcaseView

مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top