本文整理汇总了Java中android.support.annotation.LayoutRes类的典型用法代码示例。如果您正苦于以下问题:Java LayoutRes类的具体用法?Java LayoutRes怎么用?Java LayoutRes使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
LayoutRes类属于android.support.annotation包,在下文中一共展示了LayoutRes类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: VariableViewAdapter
import android.support.annotation.LayoutRes; //导入依赖的package包/类
/**
* @param variableNameManager The name manager containing the variables.
* @param context A context for inflating layouts.
* @param resource The {@link TextView} layout to use when inflating items.
*/
public VariableViewAdapter(Context context, NameManager variableNameManager,
@LayoutRes int resource) {
super(context, resource);
mVariableNameManager = variableNameManager;
mVars = mVariableNameManager.getUsedNames();
mRenameString = context.getString(R.string.rename_variable);
mDeleteString = context.getString(R.string.delete_variable);
refreshVariables();
variableNameManager.registerObserver(new DataSetObserver() {
@Override
public void onChanged() {
refreshVariables();
}
});
}
示例2: FirebaseRecyclerAdapter
import android.support.annotation.LayoutRes; //导入依赖的package包/类
FirebaseRecyclerAdapter(Class<T> modelClass,
@LayoutRes int modelLayout,
Class<VH> viewHolderClass,
FirebaseArray snapshots) {
mModelClass = modelClass;
mModelLayout = modelLayout;
mViewHolderClass = viewHolderClass;
mSnapshots = snapshots;
mSnapshots.setOnChangedListener(new ChangeEventListener() {
@Override
public void onChildChanged(EventType type, int index, int oldIndex) {
FirebaseRecyclerAdapter.this.onChildChanged(type, index, oldIndex);
}
@Override
public void onDataChanged() {
FirebaseRecyclerAdapter.this.onDataChanged();
}
@Override
public void onCancelled(DatabaseError error) {
FirebaseRecyclerAdapter.this.onCancelled(error);
}
});
}
示例3: CommonAdapter
import android.support.annotation.LayoutRes; //导入依赖的package包/类
public CommonAdapter(Context context, Class<? extends T> clazz, @LayoutRes final int layoutId,final int maxRecyclerCount) {
super();
mContext = context;
this.layoutId = layoutId;
register(clazz, new MultiItemView<T>() {
@NonNull
@Override
public int getLayoutId() {
return layoutId;
}
@Override
public void onBindViewHolder(@NonNull ViewHolder holder, @NonNull T item, int position) {
convert(holder, item, position);
}
@Override
public int getMaxRecycleCount() {
return maxRecyclerCount;
}
});
}
示例4: showCustomLongSafe
import android.support.annotation.LayoutRes; //导入依赖的package包/类
/**
* 安全地显示长时自定义吐司
*/
public static void showCustomLongSafe(@LayoutRes final int layoutId) {
sHandler.post(new Runnable() {
@Override
public void run() {
setView(layoutId);
show("", Toast.LENGTH_LONG);
}
});
}
示例5: SectionedFirebaseRecyclerAdapter
import android.support.annotation.LayoutRes; //导入依赖的package包/类
/**
*
* @param modelClass the class of the list items
* @param itemLayout XML layout of each list item
* @param itemHolderClass ViewHolder subclass of the list item
* @param headerLayout XML layout of the section headers
* @param headerHolderClass ViewHolder subclass of the section headers
* @param q reference to the Firebase datasource
*/
SectionedFirebaseRecyclerAdapter(Class<T> modelClass,
@LayoutRes int itemLayout,
Class<VH> itemHolderClass,
@LayoutRes int headerLayout,
Class<HVH> headerHolderClass,
Query q) {
super(modelClass, itemLayout,
(Class<RecyclerView.ViewHolder>) itemHolderClass, q);
this.itemLayout = itemLayout;
this.headerLayout = headerLayout;
this.itemClass = itemHolderClass;
this.headerClass = headerHolderClass;
}
示例6: QariAdapter
import android.support.annotation.LayoutRes; //导入依赖的package包/类
QariAdapter(@NonNull Context context,
@NonNull List<QariItem> items,
@LayoutRes int layoutViewId,
@LayoutRes int dropDownViewId) {
mItems = items;
mLayoutViewId = layoutViewId;
mDropDownViewId = dropDownViewId;
mInflater = LayoutInflater.from(context);
}
示例7: inflateCustomView
import android.support.annotation.LayoutRes; //导入依赖的package包/类
/**
* Inflates custom view
*
* @param layout layout for custom view
* @param viewInflateListener inflate listener for custom view
*/
private void inflateCustomView(@LayoutRes int layout, OnViewInflateListener viewInflateListener) {
View view = mActivity.getLayoutInflater().inflate(layout, this, false);
this.addView(view);
if (viewInflateListener != null) {
viewInflateListener.onViewInflated(view);
}
}
示例8: getLayout
import android.support.annotation.LayoutRes; //导入依赖的package包/类
@Override
public XmlResourceParser getLayout(@LayoutRes int id) throws NotFoundException {
int realId = getCorrespondResIdStrictly(id);
if (realId > 0) {
return mSkinResources.getLayout(realId);
}
return super.getLayout(id);
}
示例9: setContentView
import android.support.annotation.LayoutRes; //导入依赖的package包/类
@Override
public void setContentView(@LayoutRes int layoutResID) {
super.setContentView(layoutResID);
ButterKnife.bind(this);
mediumAnimationDuration = getResources().getInteger(
android.R.integer.config_mediumAnimTime);
shortAnimationDuration = getResources().getInteger(
android.R.integer.config_shortAnimTime);
initViews();
}
示例10: setContentView
import android.support.annotation.LayoutRes; //导入依赖的package包/类
/**
* {@inheritDoc}
*/
@Override
public void setContentView(@LayoutRes final int layoutResID) {
super.setContentView(layoutResID);
if (mFoundViews != null) {
mFoundViews.clear();
}
mFoundViews = AnnotationParser.parseFields(getContext(), this, this);
}
示例11: setRefreshHeaderView
import android.support.annotation.LayoutRes; //导入依赖的package包/类
/**
* 添加刷新header layout
* @param refreshHeaderLayoutRes
*/
public void setRefreshHeaderView(@LayoutRes int refreshHeaderLayoutRes) {
ensureRefreshHeaderContainer();
final View refreshHeader = LayoutInflater.from(getContext()).inflate(refreshHeaderLayoutRes, mRefreshHeaderContainer, false);
if (refreshHeader != null) {
setRefreshHeaderView(refreshHeader);
}
}
示例12: setEmptyView
import android.support.annotation.LayoutRes; //导入依赖的package包/类
private void setEmptyView(@LayoutRes final int emptyResourceId) {
if (mEmptyView == null && emptyResourceId > 0) {
mEmptyId = emptyResourceId;
mEmpty.setLayoutResource(emptyResourceId);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN) {
mEmpty.setLayoutInflater(inflater);
}
mEmptyView = mEmpty.inflate();
} else {
Log.d(VIEW_LOG_TAG, "unabled to set empty view because the empty has been set");
}
}
示例13: PlaylistAdapter
import android.support.annotation.LayoutRes; //导入依赖的package包/类
public PlaylistAdapter(AppCompatActivity activity, ArrayList<Playlist> dataSet, @LayoutRes int itemLayoutRes, @Nullable CabHolder cabHolder) {
super(activity, cabHolder, R.menu.menu_playlists_selection);
this.activity = activity;
this.dataSet = dataSet;
this.itemLayoutRes = itemLayoutRes;
setHasStableIds(true);
}
示例14: RecyclerViewAdapter
import android.support.annotation.LayoutRes; //导入依赖的package包/类
public RecyclerViewAdapter(Context context, List<T> dataList
, @LayoutRes int layoutId, RecyclerViewSingleTypeProcessor singleTypeProcessor) {
mContext = context;
mDataList = dataList;
mTypeLayoutIds = new ArrayMap<>();
mTypeLayoutIds.put(0, layoutId);
mSingleTypeProcessor = singleTypeProcessor;
}
示例15: addView
import android.support.annotation.LayoutRes; //导入依赖的package包/类
/**
* 为snackbar添加布局
* <p>在show...Snackbar之后调用</p>
*
* @param layoutId 布局文件
* @param index 位置(the position at which to add the child or -1 to add last)
*/
public static void addView(@LayoutRes int layoutId, int index) {
Snackbar snackbar = snackbarWeakReference.get();
if (snackbar != null) {
View view = snackbar.getView();
Snackbar.SnackbarLayout layout = (Snackbar.SnackbarLayout) view;
View child = LayoutInflater.from(view.getContext()).inflate(layoutId, null);
LinearLayout.LayoutParams params = new LinearLayout.LayoutParams(
LinearLayout.LayoutParams.WRAP_CONTENT,
LinearLayout.LayoutParams.WRAP_CONTENT);
params.gravity = Gravity.CENTER_VERTICAL;
layout.addView(child, index, params);
}
}