Вызов интерфейса с 2 вкладками из другого интерфейса - PullRequest
0 голосов
/ 11 февраля 2012

Мне нужно вызвать интерфейс с 2 вкладками при нажатии на элемент списка. Две вкладки должны содержать 2 отдельных действия.

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

Вот мой код:

public void onItemClick(AdapterView<?> parent, View view, int position,long id3)
{
     Intent myIntent = new Intent(getApplicationContext(), InfoActivity.class);
     startActivity(myIntent);
}

Вот лог:

02-11 15:50:21.978: E/AndroidRuntime(745): at dalvik.system.NativeStart.main(Native Method)
02-11 15:50:21.978: E/AndroidRuntime(745): Caused by: java.lang.RuntimeException: Your content must have a TabHost whose id attribute is 'android.R.id.tabhost'
02-11 15:50:21.978: E/AndroidRuntime(745): at android.app.TabActivity.onContentChanged(TabActivity.java:105)
02-11 15:50:21.978: E/AndroidRuntime(745): at com.android.internal.policy.impl.PhoneWindow.setContentView(PhoneWindow.java:210)
02-11 15:50:21.978: E/AndroidRuntime(745): at android.app.Activity.setContentView(Activity.java:1657)
02-11 15:50:21.978: E/AndroidRuntime(745): at sam.todo.OnTime.InfoActivity.onCreate(InfoActivity.java:22)
02-11 15:50:21.978: E/AndroidRuntime(745): at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1047)
02-11 15:50:21.978: E/AndroidRuntime(745): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1611)

Код для info.xml

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

        <TabWidget
            android:id="@android:id/tabs"
            android:layout_width="fill_parent"
            android:layout_height="45dp" >

        </TabWidget>
        <FrameLayout
            android:id="@android:id/tabcontent"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent">


            <LinearLayout
                android:id="@+id/linearLayout1"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:orientation="vertical" >

                <TextView
                    android:id="@+id/txtViewSelectedTask"
                    android:layout_width="match_parent"
                    android:layout_height="46dp"
                    android:textAppearance="?android:attr/textAppearanceMedium" />

                <EditText
                    android:id="@+id/txtInfo"
                    android:layout_width="match_parent"
                    android:layout_height="300dp"
                    android:layout_weight="1.84"
                    android:gravity="top|left"
                    android:inputType="textMultiLine" >

                    <requestFocus />
                </EditText>

                <Button
                    android:id="@+id/btnSave2"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:text="@string/save" />
            </LinearLayout>

        </FrameLayout>
    </LinearLayout>

</TabHost>
...