代码之家  ›  专栏  ›  技术社区  ›  badman

覆盖其他配置中的资源-Android studio

  •  0
  • badman  · 技术社区  · 6 年前

    我刚接触android,我发现了一个网站,在那里作者正在解释如何构建一个应用程序,并分享了他的代码。但是当我把代码复制到我的android工作室时,我得到了一个错误,当我按alt+enter时,我唯一的选择是“Override resource in other configuration”,但是当我键入代码时,它似乎是正常的。有人能帮我解决吗?代码如下:

     <?xml version=”1.0" encoding=”utf-8"?>
    <ScrollView android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        xmlns:android=
        xmlns:android="http://schemas.android.com/apk/res/android"”http://schemas.android.com/apk/res/android"
        xmlns:app=”http://schemas.android.com/apk/res-auto"
        xmlns:tools=”http://schemas.android.com/tools"
        android:layout_width=”match_parent”
        android:layout_height=”match_parent”>
    <LinearLayout xmlns:android=”http://schemas.android.com/apk/res/android"
        xmlns:app=”http://schemas.android.com/apk/res-auto"
        xmlns:tools=”http://schemas.android.com/tools"
        android:layout_width=”match_parent”
        android:orientation=”vertical”
        android:background=”@drawable/bg”
        android:layout_height=”match_parent”
        tools:context=”com.example.ekene.blogzone.PostActivity”>
    <ImageButton
    android:id=”@+id/imageBtn”
        android:layout_width=”match_parent”
        android:layout_height=”250dp”
        android:adjustViewBounds=”true”
        android:scaleType=”centerCrop”
        android:src=”@drawable/add_img” />
    <EditText
    android:layout_marginTop=”20dp”
        android:id=”@+id/textTitle”
        android:background=”@drawable/edit_text_styles”
        android:padding=”10dp”
        android:textColor=”#fff”
        android:textStyle=”bold”
        android:hint=”Post Title”
        android:layout_marginRight=”5dp”
        android:layout_marginLeft=”5dp”
        android:layout_width=”match_parent”
        android:layout_height=”wrap_content” />
    <EditText
    android:background=”@drawable/edit_text_styles”
        android:padding=”10dp”
        android:layout_marginTop=”20dp”
        android:hint=”Post Description”
        android:textColor=”#fff”
        android:id=”@+id/textDesc”
        android:layout_marginRight=”5dp”
        android:layout_marginLeft=”5dp”
        android:layout_width=”match_parent”
        android:layout_height=”wrap_content” />
    <Button
    android:layout_marginTop=”30dp”
        android:id=”@+id/postBtn”
        android:textColor=”#fff”
        android:textStyle=”bold”
        android:layout_marginRight=”5dp”
        android:layout_marginLeft=”5dp”
        android:background=”@drawable/action_button_style”
        android:layout_width=”match_parent”
        android:layout_height=”wrap_content”
        android:text=”Post”/>
        </LinearLayout>
        </ScrollView>
    

    谢谢。

    1 回复  |  直到 6 年前
        1
  •  1
  •   Anubhav Gupta    6 年前

    你的代码有很多错误,比如

    xmlns:android=
    

    android.com/apk/res/android网站" 还有一种不同的引用。

    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        xmlns:android="http://schemas.android.com/apk/res/android"
        >
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"
        android:orientation="vertical"
        android:background="@drawable/bg"
        android:layout_height="match_parent"
        tools:context="com.example.ekene.blogzone.PostActivity">
    <ImageButton
    android:id="@+id/imageBtn"
        android:layout_width="match_parent"
        android:layout_height="250dp"
        android:adjustViewBounds="true"
        android:scaleType="centerCrop"
        android:src="@drawable/add_img" />
    <EditText
    android:layout_marginTop="20dp"
        android:id="@+id/textTitle"
        android:background="@drawable/edit_text_styles"
        android:padding="10dp"
        android:textColor="#fff"
        android:textStyle="bold"
        android:hint="Post Title"
        android:layout_marginRight="5dp"
        android:layout_marginLeft="5dp"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />
    <EditText
    android:background="@drawable/edit_text_styles"
        android:padding="10dp"
        android:layout_marginTop="20dp"
        android:hint="Post Description"
        android:textColor="#fff"
        android:id="@+id/textDesc"
        android:layout_marginRight="5dp"
        android:layout_marginLeft="5dp"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />
    <Button
    android:layout_marginTop="30dp"
        android:id="@+id/postBtn"
        android:textColor="#fff"
        android:textStyle="bold"
        android:layout_marginRight="5dp"
        android:layout_marginLeft="5dp"
        android:background="@drawable/action_button_style"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Post"/>
        </LinearLayout>
        </ScrollView>