Text does not appear in the application land / activity.main in Android Studio 2.2.2 [closed]

1

I'm developing an application in the land version of android land / activity.main and I put an image, and two texts one with the name Donald Knuth and another one a text but when running the mobile application it only appears the image and the name Donald Knuth and the explanatory text does not appear, a word "Personality" appears

<?xml version="1.0" encoding="utf-8"?>
<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:layout_height="match_parent"
android:orientation="horizontal"
android:background="@android:color/holo_green_light"
tools:context="com.example.tulio.myapplication.MainActivity">


<ImageView
    android:id="@+id/imageView"
    android:layout_width="100dp"
    android:layout_height="wrap_content"
    android:adjustViewBounds="true"
    app:srcCompat="@drawable/knuth_b"
    tools:layout_editor_absoluteX="8dp"
    tools:layout_editor_absoluteY="59dp" />

<TextView
    android:id="@+id/txtNome2"
    android:layout_width="wrap_content"
    android:layout_height="39dp"
    android:autoText="false"
    android:padding="5dp"
    android:text="Donald Knuth"
    android:textColor="@android:color/holo_red_dark"
    tools:layout_editor_absoluteX="16dp"
    tools:layout_editor_absoluteY="31dp" />

<ScrollView
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_below="@+id/imageView"
    tools:layout_editor_absoluteY="280dp">
<TextView
    android:id="@+id/textView2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:padding="10dp"
    android:text="@string/donald"
    android:textSize="12sp"
    tools:layout_editor_absoluteX="230dp"
    tools:layout_editor_absoluteY="59dp" />
</ScrollView>

<![CDATA[

(Color.parseColor("#BABABA")); />

]]>
</LinearLayout>

My application was meant to be

Howareyou?

    
asked by anonymous 12.08.2017 / 21:54

1 answer

1

What it looks like is that you have two strings files. Because in one the language is in English, the other is in Portuguese. Check your resources and enter the text exactly in the appropriate keys.

Basically this:

values /strings.xml

<string name="donald">Texto que quero mostrar</string>

values-en /strings.xml

<string name="donald">Text that I want to show.</string>
    
12.08.2017 / 23:02