Я не могу получить этот XML, содержащий TabHost, чтобы загрузить правильно в приложении для Android - PullRequest
1 голос
/ 17 июня 2011

Кто-нибудь знает, почему это не загружается правильно.Я получаю принудительный выход в эмуляторе, когда он пытается загрузить этот XML.Я пытаюсь установить макет для этого TabHost.

<?xml version="1.0" encoding="utf-8"?>
<TabHost
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent" android:background="#FFFFFF">
  <RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:padding="5dp">
    <TableRow android:id="@+id/tableRow1" android:layout_width="wrap_content"     android:layout_height="wrap_content" android:layout_centerHorizontal="true" android:layout_marginTop="10px" android:layout_marginBottom="10px">
        <ImageView android:id="@+id/imageView1" android:layout_height="wrap_content" android:layout_width="wrap_content" android:layout_marginRight="10px" android:src="@drawable/logo"></ImageView>
        <LinearLayout android:id="@+id/linearLayout1" android:layout_height="wrap_content" android:orientation="vertical" android:layout_width="wrap_content" android:layout_gravity="center">
            <TextView android:text="text" android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/Text1" android:textColor="#1565BC" android:textStyle="bold"></TextView>
            <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="text" android:id="@+id/Text2" android:textColor="#333333"></TextView>
            <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="text" android:id="@+id/Text3" android:textColor="#333333"></TextView>
            <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="text" android:id="@+id/Text4" android:textColor="#333333"></TextView>
            <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="text" android:id="@+id/Text5" android:textColor="#1565BC"></TextView>
        </LinearLayout>
    </TableRow>
  <TabWidget 
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:id="@android:id/tabs" android:layout_below="@+id/tableRow1" android:layout_alignLeft="@+id/tableRow1" android:layout_alignRight="@+id/tableRow1"/>
<FrameLayout
    android:id="@android:id/tabcontent"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">
    </FrameLayout>
  </RelativeLayout>
</TabHost>

1 Ответ

0 голосов
/ 17 июня 2011

Я просто использовал ваш макет без каких-либо проблем, единственное, что я изменил

<ImageView android:src="@drawable/mylogo"></ImageView>

Проверьте записи в папках для рисования, которые могут быть проблемой.

...