没有找到Android ID,当它在那里时

时间:2018-03-27 13:23:49

标签: java android xml

Android Studio通过未解析的符号或ID向我提供主要活动Java中的错误。据我所知,java代码中的id已经存在。

在另一个使用这些相同原则的应用程序中,它起了作用,我对这两个应用程序进行了反复思考,找不到任何突出的东西。

这是我的java代码:

package com.example.android.quizapplication;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.EditText;
import android.widget.SeekBar;
import android.widget.TextView;

public class QuizMainActivity extends AppCompatActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_quiz_main);
}
public void display(int value) {
    TextView quantityTextView = findViewById(R.id.value_text);
    quantityTextView.setText(value);
}
public void slider(View view){
    SeekBar seekBar = (SeekBar)findViewById(R.id.i);
    int Value = seekBar.getProgress();
    EditText text = (EditText)findViewById(R.id.valueText);

    String name = text.getText().toString();
    text.setText(Value);
}
}

这是我的XML :( id就在那里)

<?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"
tools:context="com.example.android.quizapplication.QuizMainActivity">
<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent">
<TextView
    android:id="@+id/title"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="Quiz"
    android:textAlignment="center"/>

<TextView
    android:id="@+id/question"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="What is you favorite color?"
    android:textAlignment="center"
    android:paddingTop="20dp"
    android:textSize="20dp"
    android:textStyle="bold"

    android:textColor="#000000"
    android:layout_below="@+id/title"
     />
    <TextView
        android:id="@+id/value_text"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Test"
        android:textAlignment="center"
        android:layout_alignParentBottom="true"
        android:layout_marginBottom="300dp"/>
    <SeekBar
        android:id="@+id/i"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true"
        android:layout_marginBottom="146dp"
        android:onClick="slider"/>


</RelativeLayout>

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Hello World!"
     />

1 个答案:

答案 0 :(得分:0)

尝试添加此内容:

import com.example.android.quizapplication.R;