문제

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