web-dev-qa-db-ja.com

ConstraintLayoutの背景

ボタンをクリックして背景を変更しようとしましたが、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));
}
}

メインアクティビティの18行目で、「constraintLayout」にエラーがあります。シンボル 'constraintLayout'を解決できません。背景色を変更するにはどうすればよいですか?

6
Frekzok

IDを制約レイアウトに追加していません。それを含めるようにxmlファイルを変更してみてください。

<?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