可以在onCreateView调用期间从xml加载布局,我试过:
> setLayoutResource(R.layout.test);
> setWidgetLayoutResource(R.layout.test);
它崩溃了,我不知道从方法参数返回一个ViewGroup父项?
我也试过:
> View view = View.inflate(getContext(),Rlayout.test,parent),但它没有工作.
我命名根布局widget_frame,但没有帮助
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:padding="1dp" android:clickable="false" android:id="@+id/widget_frame"> <LinearLayout ....
你能告诉我我做错什么,还是指点一些工作的例子.
谢谢
更新
以下是一个关于如何膨胀以上布局的唤醒解决方案:
LayoutInflater inflater = (LayoutInflater)getContext(). getSystemService(Context.LAYOUT_INFLATER_SERVICE); View view = inflater.inflate(R.layout.test,parent,false);
解决方法
如果你正在使用onCreateView,我猜你是使用片段或者扩展一个View.
无论如何检查:
无论如何检查:
@Override public View onCreateView(LayoutInflater inflater,ViewGroup container,Bundle savedInstanceState) { return inflater.inflate(R.layout.your_layout,container); }