Kendi sürümümüzü oluşturmak için AppBarLayout'u genişletiyorum. Amacım, çalışma zamanında bazı LayoutParameters ayarlamaktır. AppBar yüksekliği.Özel GörünümGrup/Kompozit Görünüm DüzeniParametreleri kendi kurgusunun içinde
Herhangi bir Paramter ayarlamaya çalışırsam, bir NPE alırım, sanırım LayoutParameters henüz oluşturulmamış ve ayarlanmamıştır.
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
if(!hasSetHeight) {
ViewGroup.LayoutParams params = this.getLayoutParams();
params.height = mExpandedHeight;
this.setLayoutParams(params);
}
}
özel bir ViewGroup/kompozit Görünüm yapıcısı içindeki LayoutParameters ayarlamak için bir yolu var mı:
public MyAppBar(Context context, AttributeSet attrs) {
super(context, attrs);
...
LayoutInflater.from(context).inflate(R.layout.layout_my_app_bar, this, true);
ViewGroup.LayoutParams params = this.getLayoutParams();
params.height = calculateExpandedHeight(selectedAspectRatio);
this.setLayoutParams(params);
...
}
Benim şu anki geçici çözüm LayoutParams
onMeasure
içine ayarlamaktır?
layout_my_app_bar.xml
<?xml version="1.0" encoding="utf-8"?>
<merge xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/tools">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay"/>
</merge>