#android #layout
Вопрос:
У меня будут некоторые ошибки при создании приложения. Я не знаю, как это исправить. Дай мне знать, если узнаешь. Я привел код макета ниже.Чип />> добавить Я сделал это, и вот тогда я получил ошибку Inda.
Расположение
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:orientation="horizontal">
<com.google.android.material.chip.Chip
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:chipBackgroundColor="@android:color/holo_blue_bright"
app:chipText="Background Color" />
<com.google.android.material.chip.Chip
style="@style/Widget.MaterialComponents.Chip.Choice"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:chipText="Ripple Color"
app:rippleColor="@android:color/holo_orange_dark" />
<com.google.android.material.chip.Chip
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:chipIcon="@mipmap/ic_launcher"
app:chipText="Chip icon" />
</LinearLayout>
Ошибка
layoutinclude_recipe_detail.xml:400: AAPT: error: attribute chipText (aka com.app.yourrecipesapp:chipText) not found.