web-dev-qa-db-fra.com

Contexte Contexte de mise en page

J'essayais de changer l'arrière-plan en cliquant sur un bouton, mais je ne peux pas identifier la disposition des contraintes dans le code Java.

activity_main.xml:

<?xml version="1.0" encoding="utf-8"?>
<Android.support.constraint.ConstraintLayout 
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:background="@color/red"
tools:context="frekzok.trafficlight.MainActivity">

//here are some button options

</Android.support.constraint.ConstraintLayout>

MainActivity.Java:

package frekzok.trafficlight;

import Android.support.constraint.ConstraintLayout;
import Android.support.v4.content.ContextCompat;
import Android.support.v7.app.AppCompatActivity;
import Android.os.Bundle;
import Android.view.View;
import Android.widget.TextView;
import Android.widget.Button;

public class MainActivity extends AppCompatActivity {
    private ConstraintLayout mConstraintLayout;
    private TextView mInfoTextView;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        mConstraintLayout =         
(ConstraintLayout)findViewById(R.id.constraintLayout);
        mInfoTextView = (TextView)findViewById(R.id.textView2);}

public void onRedButtonClick(View view) {
    mInfoTextView.setText(R.string.red);
    mConstraintLayout.setBackgroundColor(ContextCompat.getColor(this, R.color.red));
}
public void onYellowButtonClick(View view) {
    mInfoTextView.setText(R.string.yellow);
    mConstraintLayout.setBackgroundColor(ContextCompat.getColor(this, R.color.yellow));
}
public void onGreenButtonClick(View view) {
    mInfoTextView.setText(R.string.green);
    mConstraintLayout.setBackgroundColor(ContextCompat.getColor(this, R.color.green));
}
}

Dans l'activité principale, à la ligne 18, il y a une erreur sur "constraintLayout": Impossible de résoudre le symbole 'constraintLayout' Comment puis-je changer la couleur d'arrière-plan?

6
Frekzok

Vous n'avez pas ajouté l'ID à votre disposition de contraintes. Essayez de modifier votre fichier xml pour l'inclure:

<?xml version="1.0" encoding="utf-8"?>
<Android.support.constraint.ConstraintLayout
  Android:id="@+id/constraintLayout"
  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:background="@color/red"
  tools:context="frekzok.trafficlight.MainActivity">
</Android.support.constraint.ConstraintLayout>
3
Amaury Medeiros