Переопределить ресурс в другой конфигурации - Android studio - PullRequest
0 голосов
/ 10 сентября 2018

Я новичок в Android, и я нашел сайт, где автор объясняет, как создать приложение, и он поделился своим кодом. Но когда я копирую код в свою андроид-студию, я получаю сообщение об ошибке, и когда я нажимаю alt +, введите единственный вариант, который у меня есть, это «Переопределить ресурс в другой конфигурации», но когда я набираю код, кажется, что все в порядке. Кто-нибудь может мне помочь и дать мне решение? Вот код:

 <?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 Ответ

0 голосов
/ 10 сентября 2018

В вашем коде много ошибок, таких как

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>
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...