Androidアプリを作成に関して初心者です.
以下のようなエラーが検出されておりどう対処すればよいかわかりません.

Error in an XML file: aborting build

追記1)
eclipseで作業をしていて,xmlファイルをにエラーがあります.
xmlファイルのコードのandroid:layout_width="wrap_content"とかいた行に
以下のエラー表示がありました.
原因・対処法わかればお願いします.

エラー表示

この行で見つかった複数の注釈:- エラー: Error parsing XML: duplicate attribute

要素 "ProgressBar" には属性 "android:layout_width" がすでに指定されています。

追記2)

下記のコードが今回質問として投稿しているxmlファイルです.

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.example.sumaryu.SumaryuActivity" >

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hello_world" />
<ProgressBar
android:id="@+id/Progressbar_horizontal"
style="?android:attr/ProgressBarStyleHorizontal"
android:layout_height="wrap_content"
android:indeterminate="false" />

<ProgressBar
android:id="@+id/progressbar_small"
android:layout_width="fill_parent"
style="?android:attr/progressBarStyleSmall"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:indeterminate="false" />

<ProgressBar
android:id="@+id/progressbar"
style="?android:attr/progressBarStyle"
android:layout_width="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_height="wrap_content" />

<ProgressBar
android:id="@+id/progressbar_large"
style="?android:attr/progressBarStyleLarge"
android:layout_width="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_height="wrap_content" />

</RelativeLayout>

おそらく2個目のProgressBarタグの2行目と4行目が重複しているのだと思います.エラーは2個目のProgressBarタグの4行目の行がエラー表示されているという状況です.

追記3)

xmlファイルのエラーはなくなりました.しかし,なくなったと同時にjavaファイルにエラーが検出されました.詳細は以下の通りです.

package com.example.sumaryu;

import android.os.Bundle;
import android.support.v7.app.ActionBarActivity;
import android.view.Menu;
import android.view.MenuItem;
import android.widget.ProgressBar;

public class SumaryuActivity extends ActionBarActivity {
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_sumaryu);

        ProgressBar progressBar = (ProgressBar) findViewById(R.id.progressbar_horizontal);
        progressBar.setMax(100);
        progressBar.setProgress(30);
        progressBar.setSecondaryProgress(70);
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.sumaryu, menu);
        return true;
    }

    @Override
    public boolean onOptionsItemSelected(MenuItem item) {
        // Handle action bar item clicks here. The action bar will
        // automatically handle clicks on the Home/Up button, so long
        // as you specify a parent activity in AndroidManifest.xml.
        int id = item.getItemId();
        if (id == R.id.action_settings) {
            return true;
        }
        return super.onOptionsItemSelected(item);
    }
}

エラーの場所は,コード中の真ん中周辺にある
「ProgressBar progressBar = (ProgressBar) findViewById(R.id.progressbar_horizontal);」の行です.

エラー内容が,
「progressbar_horizontal は解決できないか、フィールドではありません」
と表示されます.