Android - mẹo vặt

1.
Ẩn thanh tiêu đề:
C1:
ActionBar actionBar = getActionBar();
actionBar.hide();
C2:
this.requestWindowFeature(Window.FEATURE_NO_TITLE);  (trên setContentView)
C3:
thêm thuộc tính : android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen vào activity trong Manifest

Nhận xét