올해는 머신러닝이다.
dialog style에서 actionbar 사용하기 본문
<style name="PopupTheme" parent="android:Theme.Holo.
<item name="android:
<item name="android:
<item name="android:
<item name="android:
<item name="android:
</style>
public static void showAsPopup(Activity activity) {
//To show activity as dialog and dim the background, you need to declare android:theme="@style/
activity.requestWindowFeature(
activity.getWindow().setFlags(
WindowManager.LayoutParams.
LayoutParams params = activity.getWindow().
params.height = LayoutParams.FILL_PARENT;
params.width = 850; //fixed width
params.alpha = 1.0f;
params.dimAmount = 0.5f;
activity.getWindow().
}
'Android > Tip&Tech' 카테고리의 다른 글
font 크기 참조하자 (0) | 2013.07.03 |
---|---|
[펌]App Widget 개발에 필요한 것들 (1) | 2013.06.28 |
SwichPerference에 widgetlayout 커스터마이징시 check 설정 (0) | 2013.06.25 |
[펌]Android BitmapFactory.Options 설명 (0) | 2013.06.18 |
[펌] 나인패치 자동 생성 (0) | 2013.06.14 |