Перекрывающаяся вкладка TextView при прокрутке вверх - PullRequest
0 голосов
/ 06 января 2012

У меня возникли некоторые проблемы при разработке экрана с использованием tabWidget.Я использовал scrollView.Проблема в том, что когда я прокручиваю вверх, editText перекрывает вкладки.Вот мой файл main.xml.Поэтому, когда я пытаюсь прокрутить вверх, заголовок editText начинает перекрываться на TabHeading.

<?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="match_parent"
    android:id="@+id/tabHost"
    >
    <TabWidget android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@android:id/tabs"
        />
    <FrameLayout android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:paddingTop="50px"
        android:id="@android:id/tabcontent"
        >
        <ScrollView android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:id="@+id/scrollview">
            <LinearLayout 
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:orientation="vertical"
                android:id="@+id/createAlarmTab"
                android:paddingTop="50px"
                >
                <EditText
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:id="@+id/title"
                    android:visibility="visible"
                    />
                <EditText 
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:id="@+id/desciption"
                    android:visibility="visible"
                    android:singleLine="false"
                    android:lines="4"
                    android:gravity="top"
                    android:padding="10px"
                    />
                <DatePicker
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:id="@+id/alarmDate"
                    android:visibility="visible"
                    android:padding="10px"
                    />
                <TimePicker 
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:id="@+id/alarmTime"
                    android:visibility="visible"
                    android:padding="10px"
                    />
            </LinearLayout>
        </ScrollView>
        <LinearLayout android:layout_width="match_parent"
            android:orientation="vertical"
            android:layout_height="wrap_content"
            android:id="@+id/viewAlarmTab"
            android:paddingTop="50px"
            >
            <ListView 
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:id="@+id/alarmList"
                android:visibility="visible"
                android:padding="10px"
                />
        </LinearLayout>
    </FrameLayout>
</TabHost>

1 Ответ

0 голосов
/ 07 января 2012

удалось решить. Вложил представление прокрутки в linearLayout и добавил некоторые отступы.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...