PlayerAndroid/app/src/main/java/code/name/monkey/retromusic/views/StatusBarView.java

57 lines
1.7 KiB
Java
Raw Normal View History

2019-03-03 09:29:03 +00:00
/*
* Copyright (c) 2019 Hemanth Savarala.
*
* Licensed under the GNU General Public License v3
*
* This is free software: you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by
* the Free Software Foundation either version 3 of the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU General Public License for more details.
*/
2018-08-30 09:29:30 +00:00
package code.name.monkey.retromusic.views;
import android.content.Context;
import android.content.res.Resources;
import android.util.AttributeSet;
import android.view.View;
2019-04-04 06:07:55 +00:00
import androidx.annotation.NonNull;
2018-08-30 09:29:30 +00:00
public class StatusBarView extends View {
2020-10-06 08:46:04 +00:00
public StatusBarView(@NonNull Context context) {
super(context);
init(context);
}
public StatusBarView(@NonNull Context context, @NonNull AttributeSet attrs) {
super(context, attrs);
init(context);
}
public StatusBarView(@NonNull Context context, @NonNull AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
init(context);
}
public static int getStatusBarHeight(@NonNull Resources r) {
int result = 0;
int resourceId = r.getIdentifier("status_bar_height", "dimen", "android");
if (resourceId > 0) {
result = r.getDimensionPixelSize(resourceId);
2018-08-30 09:29:30 +00:00
}
2020-10-06 08:46:04 +00:00
return result;
}
2018-08-30 09:29:30 +00:00
2020-10-06 08:46:04 +00:00
private void init(Context context) {}
2018-08-30 09:29:30 +00:00
2020-10-06 08:46:04 +00:00
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
setMeasuredDimension(MeasureSpec.getSize(widthMeasureSpec), getStatusBarHeight(getResources()));
}
}