1

Я только что созданный по умолчанию «Вкладки активность - Action Bar Tabs (с ViewPager)» использованием AndroidStudioУдалить Spacing или Перетяжка ниже Android вкладками деятельности (Action Bar Tabs)

Мой вопрос заключается в том, что - как я удалить Интервал/Прокладка сверху при прокрутке, но сохраните интервал/прокладку в начале.

Спасибо

Screenshot

fragment_main.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:paddingLeft="@dimen/activity_horizontal_margin" 
android:paddingRight="@dimen/activity_horizontal_margin" 
android:paddingTop="@dimen/activity_vertical_margin" 
android:paddingBottom="@dimen/activity_vertical_margin" 
tools:context=".MainActivity$PlaceholderFragment"> 

<ScrollView 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content"> 

    <TextView android:id="@+id/section_label" android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:text="...."></TextView> 

</ScrollView> 

dimens.xml

<resources> 
<!-- Default screen margins, per the Android Design guidelines. --> 
<dimen name="activity_horizontal_margin">16dp</dimen> 
<dimen name="activity_vertical_margin">16dp</dimen> 

ответ

0

Спасибо [Arpit]

понял это Просто добавили некоторые идентификаторы

Теперь Работая

<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:paddingBottom="@dimen/activity_vertical_margin" 
android:paddingLeft="@dimen/activity_horizontal_margin" 
android:paddingRight="@dimen/activity_horizontal_margin" 
android:paddingTop="0dp" 
tools:context=".MainActivity$PlaceholderFragment"> 

<ScrollView 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content"> 

    <RelativeLayout 
     android:layout_width="fill_parent" 
     android:layout_height="wrap_content"> 

     <View 
      android:id="@+id/v1" 
      android:layout_width="fill_parent" 
      android:layout_height="wrap_content" 
      android:layout_marginTop="@dimen/activity_vertical_margin" /> 

     <TextView 
      android:id="@+id/section_label" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:layout_below="@id/v1" 
      android:text="..."></TextView> 
    </RelativeLayout> 
</ScrollView> 

0
<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:paddingLeft="@dimen/activity_horizontal_margin" 
android:paddingRight="@dimen/activity_horizontal_margin" 
android:paddingTop="0dp" 
android:paddingBottom="@dimen/activity_vertical_margin" 
tools:context=".MainActivity$PlaceholderFragment"> 

Надеюсь, я правильно понял, что вы пытаетесь.

+0

Я уже пробовал, плз проверить изображение, не работает, как я хочу его к. http://postimg.org/image/q0vgqn9a5/ – ThunderRoid

0

Просто измените 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:paddingLeft="@dimen/activity_horizontal_margin" 
    android:paddingRight="@dimen/activity_horizontal_margin" 
    android:paddingTop="0dp" 
    android:paddingBottom="@dimen/activity_vertical_margin" 
    tools:context=".MainActivity$PlaceholderFragment"> 

    <ScrollView 
     android:layout_width="fill_parent" 
     android:layout_height="wrap_content"> 
    <RelativeLayout 
      android:layout_width="fill_parent" 
      android:layout_height="wrap_content" > 

      <View 
       android:layout_width="fill_parent" 
       android:layout_height="wrap_content" 
       android:layout_marginTop="@dimen/activity_vertical_margin" /> 

     <TextView android:id="@+id/section_label" android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:text="...."></TextView> 
    </RelativeLayout> 
    </ScrollView> 
</RelativeLayout> 
0

Open Рез/значения/dimens.xml и изменить вертикальный край там

<dimen name="activity_vertical_margin">0dp</dimen> 

и горизонтальной тоже, если вы хотите:

<dimen name="activity_horizontal_margin">0dp</dimen> 

 Смежные вопросы

  • Нет связанных вопросов^_^