org.solovyev.android.view.ViewFromLayoutBuilder Maven / Gradle / Ivy
package org.solovyev.android.view;
import android.content.Context;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
/**
* User: serso
* Date: 4/18/12
* Time: 12:57 AM
*/
public class ViewFromLayoutBuilder implements ViewBuilder {
private final int layoutId;
private final int viewId;
private final boolean wholeLayout;
@Nullable
private LayoutInflater layoutInflater;
private ViewFromLayoutBuilder(int layoutId, int viewId, boolean wholeLayout) {
this.layoutId = layoutId;
this.viewId = viewId;
this.wholeLayout = wholeLayout;
}
@NotNull
public static ViewFromLayoutBuilder newInstance(int layoutId, int viewId) {
return new ViewFromLayoutBuilder(layoutId, viewId, false);
}
@NotNull
public static ViewFromLayoutBuilder newInstance(int layoutId) {
return new ViewFromLayoutBuilder(layoutId, 0, true);
}
public void setLayoutInflater(@Nullable LayoutInflater layoutInflater) {
this.layoutInflater = layoutInflater;
}
@NotNull
@Override
public V build(@NotNull Context context) {
LayoutInflater li = layoutInflater;
if (li == null) {
li = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
}
if (wholeLayout) {
// if whole layout - just return view
return (V)li.inflate(layoutId, null);
} else {
// else try to find view by id
final ViewGroup itemView = (ViewGroup) li.inflate(layoutId, null);
return (V)itemView.findViewById(viewId);
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy