1
我試過下面的代碼,它對Activity類的工作很好,但我需要擴展ListActivity類,但是這段代碼給出了異常。 此類擴展ListActivity如何在ListActivity上添加coverflowView?
setContentView(R.layout.main);
textView = (TextView) findViewById(this .getResources()
.getIdentifier("statusText", "id",
"com.customcoverflowproject.customcoverflowapplication"));
// note resources below are taken using getIdentifier to allow importing
// this library as library.
final CoverFlow coverFlow1 = (CoverFlow) findViewById(this
.getResources().getIdentifier("coverflow", "id",
"com.customcoverflowproject.customcoverflowapplication"));
setupCoverFlow(coverFlow1, false);
"CoverFlow is another class which inherit to Gallery".
把你的異常日誌貓還 –