Android Studio无法解析符号“内容”

时间:2016-03-05 23:04:19

标签: android android-layout

开始做一些应用程序开发,我正在关注这个谷歌教程:http://developer.android.com/training/basics/firstapp/starting-activity.html

在“显示消息”部分,他们有一段代码:RelativeLayout layout = (RelativeLayout) findViewById(R.id.content);可以在教程中使用,但它对我不起作用。

我收到错误说,无法解析符号“内容”。这是我的代码:

public class DisplayMessageActivity extends AppCompatActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_display_message);
    Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
    setSupportActionBar(toolbar);

    FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.fab);
    fab.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View view) {
            Snackbar.make(view, "Replace with your own action", Snackbar.LENGTH_LONG)
                    .setAction("Action", null)
                    .show();
        }
    });
    getSupportActionBar().setDisplayHomeAsUpEnabled(true);

    Intent intent = getIntent();
    String message = intent.getStringExtra(MyActivity.EXTRA_MESSAGE);
    TextView textView = new TextView(this);
    textView.setTextSize(40);
    textView.setText(message);

    RelativeLayout layout = (RelativeLayout) findViewById(R.id.content);
    layout.addView(textView);
}

}

当我点击建议的修复时,可以选择执行以下操作: 创建id值资源“内容” 创建字段“内容” 重命名参考。

这是我的content_display_message.xml文件:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    tools:context="com.test.DisplayMessageActivity"
    tools:showIn="@layout/activity_display_message">

    android:id="@+id/content">

</RelativeLayout>

3 个答案:

答案 0 :(得分:1)

content_display_message.xml文件无效xml:

...
tools:showIn="@layout/activity_display_message">
android:id="@+id/content">
...

从第>行删除tools:showIn="@layout/activity_display_message">

答案 1 :(得分:0)

activity_display_message.xml内,必须为布局分配ID,如:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:id="@+id/content">

    <!-- Other layouts -->

</RelativeLayout>

答案 2 :(得分:0)

在android studio的最新版本中,默认情况下,dimens.xml不可用。

@dimen指的是维度,它是一个文件,您可以在其中定义维度,以便以后在任何布局文件中使用它们。

它位于res/values/dimens,这是文件样本的样子:

 <resources>
    <!-- Default screen margins, per the Android Design guidelines. -->
    <dimen name="activity_horizontal_margin">16dp</dimen>
    <dimen name="activity_vertical_margin">16dp</dimen>
  </resources>