您好我正在尝试按下按钮时显示布局,但布局从未显示过。由于某种原因没有抛出异常。该按钮位于活动内。该按钮被调用并声明并且有效。调用布局只是按钮的附加操作。
这是我的代码来扩充布局:
LayoutInflater layoutInflater = (LayoutInflater)getApplicationContext().getSystemService(LAYOUT_INFLATER_SERVICE);
View error = layoutInflater.inflate(R.layout.error_search_no_results,null);
答案 0 :(得分:0)
使用此:
rv.addView(error);
其中rv是您的父布局。