🙆

[Android Studio] 新規にディレクトリを作成したら、いろいろエラーがでた。

2022/06/15に公開

[Android Studio] 新規にディレクトリを作成したら、いろいろエラーがでた。

AndroidStudioでアプリを開発する際、いろいろな機能を実装したが一つの階層にいろいろな機能のActivityクラスやServiceクラスが同窓会してるのでディレクトリに分けてみたのですが、エラーが発生したので、その時のメモ。

Rクラスを読み込まない

ディレクトリを分けたら、Rクラスを明示的にimportしなければならない。

ABC.java
import com.example.testApp.R;

xmlファイルで「tools:context=".abc"」が読み込まない

完全修飾クラス名で記載する必要がある。

layout_abc.xml
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.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.testApp.other.ABC">
</androidx.constraintlayout.widget.ConstraintLayout>

Discussion