0

アプリケーション内にタブとスワイプ メソッドを実装しました。ここにリンクがあります。(これは素晴らしいチュートリアルです)最初のタブのアプリケーション内で、ListView があり、行は他の xml で定義されています。

これはtab1.xmlです

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

    <LinearLayout
        android:id="@+id/LinearLayout5"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@+id/LinearLayout3"
        android:layout_alignParentBottom="true"
        android:layout_below="@+id/LinearLayout3"
        android:layout_marginTop="10dp"
        android:background="#ccffcc"
        android:orientation="horizontal" >

        <ListView
            android:id="@+id/listView"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:layout_alignParentTop="true">           
<!--        tools:listitem="@layout/row"> -->

        </ListView>     
    </LinearLayout>

</LinearLayout>

これはrow.xmlです

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"

    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:padding="5dp"
    tools:context=".MainActivity" >

    <TextView
        android:id="@+id/tv_prodotto"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        android:layout_marginLeft="50dp"
        android:text="Prodotto"
        android:textStyle="bold" android:textColor="#000000" />

     <View
         android:id="@+id/viewLine"
         android:layout_width="wrap_content"
         android:layout_height="1dp"
         android:layout_below="@id/tv_prodotto"
         android:layout_marginLeft="50dp"
         android:layout_marginRight="50dp"
         android:background="#666666" />

    <TextView
        android:id="@+id/tv_qta"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_below="@+id/tv_prodotto"
        android:layout_marginLeft="50dp"
        android:layout_marginTop="3dp"
        android:text="Quantita"
        android:textColor="#000000"
        android:textSize="12sp" />

</RelativeLayout>

コンパイラはツールでエラーを出します:listitem

これはエラーです: Attribute is missing the Android namespace prefix before implement the Tabs and swipe method (通常のアプリケーションで) tools:listitem="@layout/row"コンパイラ エラーなしで正しく実行されます! どうすればこれを解決できますか?

4

1 に答える 1

0

私はあなたのすべてのトラブルを救います。

私はあなたが日食を使っていることを願っています。

Eclipse で新しい Android プロジェクトを作成すると、タブ スワイプを実装するかどうかのオプションが提供されます (他の多くのオプションも)。

新しいプロジェクトの作成中、最後のウィンドウで。「ナビゲーションタイプ」のオプションがあります。スワイプ機能付きのタブを実装する場合は、ここで選択します。スワイプでタブを実装するには、最小 API が 11 である必要があります。これは、新しい Android プロジェクトを作成中の最後のウィンドウです。

他に質問がある場合は、お気軽に質問してください。

これがあなたを助けることを願っています。

于 2013-09-18T22:44:16.930 に答える