Sandeep Londhe Ответов: 2

Android Layout Показывает Ошибку?


Мой Android XML Layout показывает следующую ошибку, он не показывает **предварительный просмотр** макета:


**Примечание: этот проект содержит ошибки компиляции Java, которые могут привести к сбоям рендеринга для пользовательских представлений. Сначала исправьте проблемы компиляции.**

**Исключение, возникшее во время рендеринга: android.widget.TextView не может быть приведен к android.view.ViewGroup
Сведения об исключениях регистрируются в окне > показать вид > журнал ошибок**

Мой **activity.xml** файл выглядит следующим образом:


<?xml version="1.0" encoding="utf-8"?>
   <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
   android:layout_width="match_parent"
   android:layout_height="match_parent"
   android:orientation="vertical" >

   <TextView
       android:id="@+id/textView1"
       android:layout_width="fill_parent"
       android:layout_height="wrap_content"
       android:layout_marginTop="10dp"
       android:removed="#069c88"
       android:gravity="center"
       android:text="Home"
       android:textColor="#fffff"
       android:textSize="30dp" >

       <TextView
           android:id="@+id/textView2"
           android:layout_width="match_parent"
           android:layout_height="wrap_content"
           android:gravity="center"
           android:paddingTop="20dp"
           android:text="Welcome admin"
           android:textAppearance="?android:attr/textAppearanceLarge" />
   </TextView>


   </LinearLayout>

Richard MacCutchan

Система сборки говорит, что у вас есть ошибки компиляции, поэтому вам нужно сначала их исправить. И я не думаю, что у тебя может быть ребенок. TextView внутри еще одного.

2 Ответов

Рейтинг:
19

Salman Nazir

Использовать это .,. Это сработает.

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <TextView
        android:id="@+id/textView1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="10dp"
        android:gravity="center"
        android:text="Home"
        android:textColor="#121212"
        android:textSize="30dp" >
    </TextView>

    <TextView
        android:id="@+id/textView2"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:paddingTop="20dp"
        android:text="Welcome admin"
        android:textAppearance="?android:attr/textAppearanceLarge" />

</LinearLayout>


Рейтинг:
0

David Crow

Ваш TextView именованный textView1 не был завершен должным образом.


Richard Deeming

Всего на три года опоздал!