2017-03-12 9 views
0

私はxmlファイルにツールバーを追加しようとしています。どこにxmlファイルにインクルードを追加できますか?

だから私はtoolbar.xmlを作って、私はupload.xmlに含める必要があります。

<?xml version="1.0" encoding="utf-8"?> 
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:id="@+id/activity_upload" 
    android:layout_width="match_parent" 
    android:padding="10dp" 
    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.sk.mf.Upload" 
    android:background="#fff"> 

    <LinearLayout 

     android:orientation="vertical" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content"> 

     <ImageView 
      android:id="@+id/imageToUpload" 
      android:layout_gravity="center_horizontal" 
      android:layout_width="150dp" 
      android:layout_height="150dp" /> 

     <EditText 
      android:id="@+id/etUploadName" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" /> 

     <Button 
      android:id="@+id/bUploadImage" 
      android:text="Upload Image" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" /> 


    </LinearLayout> 


</ScrollView> 

問題はどこにでも、私はそれを置く、私はのようなエラーが発生しました: scrollviewが唯一の直接の子をホストすることができます( 複数のルートタグ(スクロールビューの後) ...

私の質問はここにあります、上記のコードはどこにありますか?

<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"> 
    <include android:id="@+id/toolbar" layout="@layout/toolbar"></include> 
</RelativeLayout> 

答えて

1

これを試してみてください。LinearLayoutであなたのレイアウトをラップし、toolbarタグ

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout 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:orientation="vertical"> 

    <include 
     android:id="@+id/toolbar" 
     layout="@layout/toolbar"></include> 


    <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" 
     xmlns:tools="http://schemas.android.com/tools" 
     android:id="@+id/activity_upload" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:background="#fff" 
     android:padding="10dp" 
     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.sk.mf.Upload"> 

     <LinearLayout 

      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:orientation="vertical"> 

      <ImageView 
       android:id="@+id/imageToUpload" 
       android:layout_width="150dp" 
       android:layout_height="150dp" 
       android:layout_gravity="center_horizontal" /> 

      <EditText 
       android:id="@+id/etUploadName" 
       android:layout_width="match_parent" 
       android:layout_height="wrap_content" /> 

      <Button 
       android:id="@+id/bUploadImage" 
       android:layout_width="match_parent" 
       android:layout_height="wrap_content" 
       android:text="Upload Image" /> 

     </LinearLayout> 

    </ScrollView> 
</LinearLayout> 
+0

はどうもありがとうございました! –

関連する問題