20

タブのカスタム レイアウトで、親要素をmatch_parentに設定し、背景色を設定します。実行すると、要素 imageview と textview をラップするカスタム レイアウトのタブが表示されます。このカスタム レイアウトで、タブ間にスペースを空けずにタブを埋めたいと思います。ここで出力を確認してください:タブのスクリーンショット

private void setupTabLayout(ViewPager viewPager, ViewPagerAdapter viewPagerAdapter) {
    TabLayout tabLayout = (TabLayout) findViewById(R.id.tab_layout);
    tabLayout.setupWithViewPager(viewPager);

    int length = tabLayout.getTabCount();
    for (int i = 0; i < length; i++) {
        tabLayout.getTabAt(i).setCustomView(viewPagerAdapter.getTabView(i));
    }
}

tab_layout.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@+id/layout"
    android:background="@color/grey_accent">

    <ImageView
        android:layout_gravity="center"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/icon"
        android:src="@drawable/ic_action_home"
        android:layout_marginBottom="19dp"
        android:layout_above="@+id/title"
        android:layout_centerHorizontal="true" />

    <TextView
        android:layout_gravity="center"
        android:textColor="@color/white"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Home"
        android:id="@+id/title"
        android:layout_marginBottom="259dp"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true" />
</RelativeLayout>

ViewPagerAdapter:

public View getTabView(int position) {
    View view = LayoutInflater.from(this.context).inflate(R.layout.tab_layout, null);
    TextView title = (TextView) view.findViewById(R.id.title);
    ImageView icon = (ImageView) view.findViewById(R.id.icon);
    ViewGroup layout = (ViewGroup) view.findViewById(R.id.layout);

    layout.setBackgroundResource(this.mColorList.get(position));
    icon.setImageResource(this.mIconList.get(position));
    title.setText(this.getPageTitle(position));

    return view;
}
4

5 に答える 5

13

これを試して

<android.support.design.widget.TabLayout
    app:tabPaddingStart="-1dp"
    app:tabPaddingEnd="-1dp"/>

ここで見つけました

于 2015-08-20T04:14:40.473 に答える
4

複数のタブを追加する

ステップ 1: customtabs の xml レイアウト コードを追加する

<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentBottom="true">
<android.support.design.widget.AppBarLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="?attr/colorPrimary"
        app:layout_scrollFlags="scroll|enterAlways"
        app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />

    <android.support.design.widget.TabLayout
        android:id="@+id/tabs"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:tabMode="scrollable"
        android:background="@color/white"
        app:tabGravity="center" />

</android.support.design.widget.AppBarLayout>


<android.support.v4.view.ViewPager
    android:id="@+id/viewpager"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    android:layout_marginBottom="50dp"/>

ステップ 2 : タブ アクティビティの Java コード

public class BookingsTabs extends AppCompatActivity {
    String url, smobile, snames, semail, sid, stoken, responseServer;
    String id, token, did, stsid, processresponse, type, cancelresponse;
    TextView tv1;
    Button cretedeal;
    ViewbookingsAdapter adapter;
    ViewbookingsAdapter2 adapter2;
    LinearLayout order;
    private Tracker mTracker;
    ProgressDialog pDialog;
    ListView listview;
    private Toolbar toolbar;
    private TabLayout tabLayout;
    private ViewPager viewPager;
    AnalyticsApplication application1;
    SessionManagement session;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.view_bookings);

        toolbar = (Toolbar) findViewById(R.id.toolbar);
        setSupportActionBar(toolbar);
        getSupportActionBar().setDisplayHomeAsUpEnabled(true);
        if (toolbar != null) {
            setSupportActionBar(toolbar);
            ActionBar actionBar = getSupportActionBar();
            actionBar.setDisplayHomeAsUpEnabled(true);
            actionBar.setDisplayShowHomeEnabled(true);
            actionBar.setDisplayShowTitleEnabled(true);
            actionBar.setDisplayUseLogoEnabled(false);
            actionBar.setHomeButtonEnabled(true);
        }

        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
            getWindow().addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);
            getWindow().setStatusBarColor(getResources().getColor(R.color.colorPrimaryDark));
        }
        viewPager = (ViewPager) findViewById(R.id.viewpager);
        setupViewPager(viewPager);
        int defaultValue = 0;
        int page = getIntent().getIntExtra("TAB", defaultValue);
        viewPager.setCurrentItem(page);
        application1 = (AnalyticsApplication) getApplication();
        mTracker = application1.getDefaultTracker();
        tabLayout = (TabLayout) findViewById(R.id.tabs);
        tabLayout.setupWithViewPager(viewPager);
        tabLayout.setSelectedTabIndicatorColor(getResources().getColor(R.color.accentColor));
        tabLayout.setTabTextColors(ContextCompat.getColorStateList(this, R.color.aquablue));

        tabLayout.getTabAt(0).setCustomView(R.layout.aquablue);
        tabLayout.getTabAt(1).setCustomView(R.layout.orangeprocess);
        tabLayout.getTabAt(2).setCustomView(R.layout.shipping);
        tabLayout.getTabAt(3).setCustomView(R.layout.deliver);
        tabLayout.getTabAt(4).setCustomView(R.layout.completedtxt);
        tabLayout.getTabAt(5).setCustomView(R.layout.cancelled);

        callAsynchronousTask();
        viewPager.setCurrentItem(0);
    }

    private void setupViewPager(ViewPager viewPager) {
        ViewPagerAdapter adapter = new ViewPagerAdapter(getSupportFragmentManager());
        adapter.addFrag(new OrderplacedFragment(), "Order Placed");
        adapter.addFrag(new ProcessingFragment(), "Processing");
        adapter.addFrag(new ShippingFragment(), "Shipping");
        adapter.addFrag(new DeliveredFragment(), "Delivered");
        adapter.addFrag(new CompletedFragment(), "Completed");
        adapter.addFrag(new CancelledFragment(), "Cancelled");
        viewPager.setAdapter(adapter);
    }

    class ViewPagerAdapter extends FragmentPagerAdapter {
        private final List<Fragment> mFragmentList = new ArrayList<>();
        private final List<String> mFragmentTitleList = new ArrayList<>();

        public ViewPagerAdapter(FragmentManager manager) {
            super(manager);
        }

        @Override
        public Fragment getItem(int position) {
            if (position == 0) {

            }
            return mFragmentList.get(position);
        }

        @Override
        public int getCount() {
            return mFragmentList.size();
        }

        public void addFrag(Fragment fragment, String title) {
            mFragmentList.add(fragment);
            mFragmentTitleList.add(title);
        }

        @Override
        public CharSequence getPageTitle(int position) {
            return mFragmentTitleList.get(position);
        }
    }
}

ステップ 3 : 他のタブと同じように、1 つのタブに以下のサンプル タブ コード フラグメントを追加しました。

リストビューまたは一部のデータの xml コードを使用する

public class OrderplacedFragment extends Fragment {
    View mMainView;
    String url, smobile, snames, semail, sid, stoken, responseServer;
    Context context;
    ViewbookingsAdapter adapter;
    ViewbookingsAdapter2 adapter2;
    ListView listview;
    LinearLayout tv1;
    TextView create;
    ArrayList<HashMap<String, String>> processlist, hatfilterslist;
    SessionManagement session;
    private SwipeRefreshLayout mSwipeRefreshLayout = null;

    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {

        mMainView = inflater.inflate(R.layout.listview_orderbookings, container, false);

        listview = (ListView) mMainView.findViewById(R.id.listview);

        pDialog = new ProgressDialog(getActivity());
        pDialog.setMessage("Loading...");
        pDialog.setMax(5);
        Intent j = getActivity().getIntent();
        coupon_code = j.getStringExtra("code");
        create = (TextView) mMainView.findViewById(R.id.dealslist);
        tv1 = (LinearLayout) mMainView.findViewById(R.id.no_deals_linear);
        create = (TextView) mMainView.findViewById(R.id.dealslist);
        create.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {

                Intent i = new Intent(getActivity(), MyDealsActivity.class);
                startActivity(i);

            }
        });
        tv1.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {

                Intent i = new Intent(getActivity(), MyDealsActivity.class);
                startActivity(i);
            }
        });

        return mMainView;
    }
}

このタブでは、カウントも追加できます。これについて質問がある場合は、私に聞いてください

于 2017-01-03T10:27:32.950 に答える
1

app:tabMaxWidth="44dp" app:tabMinWidth="44dp" を使用

于 2016-11-09T18:03:26.563 に答える