0

我正在使用开源 OI ShoppingList 模板并尝试从http://www.openintents.org/对其进行修改。

有两个库和一个主项目,我试图将库移动到主项目“OI ShoppingList”,但它给我的代码错误。

我设法毫无问题地移动其中一个“ShoppingListLibrary”。移动 DistributionLibrary 没有问题,但是当我将布局文件(“oi_distribution_eula”、“oi_distribution_infoactivity”)移动到主项目时,3 个源文件损坏了。

我应该改变什么来完成这项工作的任何想法都在到处寻找,但没有运气。

这是指向源的 Dropbox 链接。 https://www.dropbox.com/s/iisqncajbbd9gel/ShoppingList-source-1.6%20not%20working.rar

提前致谢

编辑1:感谢您的反馈。这是错误在 setContentView(R.layout.oi_distribution_infoactivity); 中的代码之一。

在布局下,错误显示为“布局无法解析或不是字段”

我试过导入 R 类,清理项目,但我仍然有这个错误

    public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    mDistribution.setFirst(MENU_DISTRIBUTION_START, DIALOG_DISTRIBUTION_START);

    // Check whether EULA has been accepted
    // or information about new version can be presented.
    if (mDistribution.showEulaOrNewVersion()) {
        return;
    }

    setContentView(R.layout.oi_distribution_infoactivity);

    init();

    mApplicationStrings = new String[mApplications.length];
    for (int i = 0; i < mApplications.length; i++) {
        mApplicationStrings[i] = getString(mApplications[i]);
    }
    setListAdapter(new FontArrayAdapter<String>(this,
            android.R.layout.simple_list_item_1, mApplicationStrings));
    ListView listview = getListView();

    listview.setOnItemClickListener(this);

    // Set message of activity
    String appname = VersionUtils.getApplicationName(this);
    String message = getString(R.string.oi_distribution_info_activity_text, 
            appname);
    TextView tv = (TextView) findViewById(R.id.text);
    tv.setText(message);

    /*
    TypedArray a = obtainStyledAttributes(mTheme, R.styleable.ShoppingList);
    String typefaceName = a.getString(R.styleable.ShoppingList_textTypeface);
    mTextSizeMedium = a.getDimensionPixelOffset(R.styleable.ShoppingList_textSizeMedium, 23);
    mTextSizeLarge = a.getDimensionPixelOffset(R.styleable.ShoppingList_textSizeLarge, 28);
    mTextColor = a.getColor(R.styleable.ShoppingList_textColor, Color.BLACK);
    Drawable background = a.getDrawable(R.styleable.ShoppingList_background);


    View v = findViewById(R.id.background);
    v.setBackgroundDrawable(background);

    mTypeface = Typeface.createFromAsset(getResources().getAssets(), typefaceName);

    TextView tv = (TextView) findViewById(R.id.text);
    tv.setTypeface(mTypeface);
    tv.setTextSize(mTextSizeMedium);
    tv.setTextColor(mTextColor);
    */
}
4

0 回答 0