import numpy as np
a = np.random.rand(27).reshape(3,3,3)
print(a)
for i in np.arange(np.shape(a)[0]):
idx = np.argsort(a[i,:,1])
a[i]=a[i,idx]
print(a)
我试图在标签活动中获取歌曲列表但是当应用程序运行时,它显示为空白并说:
没有附加适配器,跳过布局
但是当我在没有tab活动的其他项目中运行相同的代码时,它工作正常。请帮忙。如果您需要其他详细信息,请与我们联系。
这是我的路线:
没有连接适配器;跳过布局01-04 02:56:42.346 24747-24775 / com.example.murarilal.musicmania E / EGL_emulation:tid 24775:eglSurfaceAttrib(1223):错误0x3009 (EGL_BAD_MATCH)01-04 02:56:42.346 24747-24775 / com.example.murarilal.musicmania W / OpenGLRenderer:失败 在表面0x9e211d00上设置EGL_SWAP_BEHAVIOR,错误= EGL_BAD_MATCH 01-04 02:56:42.352 24747-24747 / com.example.murarilal.musicmania I / Choreographer:跳过33帧!该应用程序可能也在做 在其主要线程上做了很多工作。 01
答案 0 :(得分:0)
我认为你已经夸大了错误的XML。如果有fragment_songs_tab
fragment_main
而不是fragment_songs_tab.xml
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View v = inflater.inflate(R.layout.fragment_songs_tab, container, false);
return v;
}
@Override
public void onViewCreated(View view, Bundle savedInstanceState) {
super.onViewCreated(view, savedInstanceState);
// add your code here which executes after the execution of onCreateView() method.
}
参考Difference Between ViewCreated and CreateView
Difference between onCreateView and onViewCreated in Fragment