with viewpager tablayout tab que practice layouts best and java android android-viewpager relativelayout

java - tablayout - Viewpager de Android bajo RelativeLayout



viewpager with layouts (2)

Estoy trabajando en ViewPager. Escribí código que puede crear ViewPager y también tengo alguna clase de Java, pero quiero que mi ViewPager debe estar debajo del diseño. Este es un código mi xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:background="#fa6a6a" > <RelativeLayout android:id="@+id/relativeLayout1" android:layout_width="fill_parent" android:layout_height="wrap_content" android:background="#171717" > <ImageButton android:id="@+id/menu_button" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerVertical="true" android:layout_marginLeft="12dp" android:background="@drawable/ic_launcher" /> <ImageView android:id="@+id/image" android:layout_width="wrap_content" android:layout_height="7.0mm" android:layout_centerHorizontal="true" android:layout_centerVertical="true" android:background="@drawable/ic_launcher" /> <ToggleButton android:id="@+id/button_search" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentRight="true" android:layout_centerVertical="true" android:layout_marginRight="12dp" android:background="@drawable/ic_launcher" android:padding="2dip" android:textOff="" android:textOn="" /> </RelativeLayout> <RelativeLayout android:layout_width="match_parent" android:layout_height="match_parent" android:layout_alignParentLeft="true" android:layout_below="@+id/relativeLayout1" > <android.support.v4.view.ViewPager android:id="@+id/vp_main" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_below="@+id/relativeLayout1" > </android.support.v4.view.ViewPager> </RelativeLayout>

Este es un código de mi java:

public class MainActivity extends FragmentActivity implements ActionBar.TabListener { private ViewPager viewPager; private TabsPagerAdapter mAdapter; private ActionBar actionBar; // Tab titles private String[] tabs = { "test1", "test2", "test3", "test4", "test5" }; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); viewPager = (ViewPager) findViewById(R.id.vp_main); actionBar = getActionBar(); actionBar.setDisplayShowTitleEnabled(false); actionBar.setDisplayShowHomeEnabled(false); mAdapter = new TabsPagerAdapter(getSupportFragmentManager()); viewPager.setAdapter(mAdapter); actionBar.setHomeButtonEnabled(false); actionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS); // Adding Tabs for (String tab_name : tabs) { actionBar.addTab(actionBar.newTab().setText(tab_name) .setTabListener(this)); } /** * on swiping the viewpager make respective tab selected * */ viewPager.setOnPageChangeListener(new ViewPager.OnPageChangeListener() { @Override public void onPageSelected(int position) { actionBar.setSelectedNavigationItem(position); } @Override public void onPageScrolled(int arg0, float arg1, int arg2) { } @Override public void onPageScrollStateChanged(int arg0) { } }); } @Override public void onTabReselected(Tab tab, FragmentTransaction ft) { } @Override public void onTabSelected(Tab tab, FragmentTransaction ft) { // on tab selected // show respected fragment view viewPager.setCurrentItem(tab.getPosition()); } @Override public void onTabUnselected(Tab tab, FragmentTransaction ft) { } }

como resultado esto

Quiero que mi viewpager (actionBar) se represente debajo del diseño


Compruébalo, te ayudará ...

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:background="#fa6a6a" > <RelativeLayout android:id="@+id/relativeLayout1" android:layout_width="fill_parent" android:layout_height="wrap_content" android:background="#171717" > <ImageButton android:id="@+id/menu_button" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerVertical="true" android:layout_marginLeft="12dp" android:background="@drawable/ic_launcher" /> <ImageView android:id="@+id/image" android:layout_width="wrap_content" android:layout_height="7.0mm" android:layout_centerHorizontal="true" android:layout_centerVertical="true" android:background="@drawable/ic_launcher" /> <ToggleButton android:id="@+id/button_search" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentRight="true" android:layout_centerVertical="true" android:layout_marginRight="12dp" android:background="@drawable/ic_launcher" android:padding="2dip" android:textOff="" android:textOn="" /> </RelativeLayout> <RelativeLayout android:layout_width="match_parent" android:layout_height="match_parent" android:layout_alignParentLeft="true" android:layout_below="@+id/relativeLayout1" > <android.support.v4.view.ViewPager android:id="@+id/vp_main" android:layout_width="match_parent" android:layout_height="match_parent" > </android.support.v4.view.ViewPager> </RelativeLayout> </RelativeLayout>


Prueba esto :

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:background="#fa6a6a" > <RelativeLayout android:layout_width="match_parent" android:layout_height="match_parent" android:layout_alignParentLeft="true"> <android.support.v4.view.ViewPager android:id="@+id/vp_main" android:layout_width="match_parent" android:layout_height="match_parent"> </android.support.v4.view.ViewPager> </RelativeLayout> <RelativeLayout android:id="@+id/relativeLayout1" android:layout_width="fill_parent" android:layout_height="wrap_content" android:background="#171717" > <ImageButton android:id="@+id/menu_button" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerVertical="true" android:layout_marginLeft="12dp" android:background="@drawable/ic_launcher" /> <ImageView android:id="@+id/image" android:layout_width="wrap_content" android:layout_height="7.0mm" android:layout_centerHorizontal="true" android:layout_centerVertical="true" android:background="@drawable/ic_launcher" /> <ToggleButton android:id="@+id/button_search" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentRight="true" android:layout_centerVertical="true" android:layout_marginRight="12dp" android:background="@drawable/ic_launcher" android:padding="2dip" android:textOff="" android:textOn="" /> </RelativeLayout> </RelativeLayout>

Tampoco te olvides de limpiar tu proyecto. Espero eso ayude