Skip to content
FVolodia edited this page Dec 28, 2016 · 28 revisions

1. For use Dialog Fragment (All display)

getDialog().getWindow().requestFeature(Window.FEATURE_NO_TITLE);

2. Generate android debug key

keytool -list -v -keystore ~/.android/debug.keystore -alias androiddebugkey -storepass android -keypass android

3. GIT commands

git checkout -b feature_#1234 - create new branch from current

git add . - add all to git

git tag v1.2.0 - add tag for branch (Don't forget add tag until push)

4. Drawable 2 side borders

<!-- Background -->
<item>
    <shape>
        <solid android:color="@color/white"/>
        <corners android:radius="1dp"/>
    </shape>
</item>