gpt4 book ai didi

java - 当我选择 TabItem 时它位于中心

转载 作者:行者123 更新时间:2023-12-01 18:09:59 26 4
gpt4 key购买 nike

我有一个可滚动的选项卡布局,但是当我选择一个选项卡项目时,可滚动选项卡会停止,当我选择任何选项卡项目时,我需要将选项卡项目放在中心。谢谢。

<com.google.android.material.tabs.TabLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:tabSelectedTextColor="@color/colorPrimary">

<com.google.android.material.tabs.TabItem
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Calle Mármol complejo 23" />

<com.google.android.material.tabs.TabItem
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Calle Mármol complejo 23" />
<FrameLayout
android:id="@+id/fragment_container"
android:layout_width="match_parent"
android:layout_height="match_parent" />

现在是java文件,只是为了转到tabitem

 @Override
public boolean onNavigationItemSelected(@NonNull MenuItem menuItem) {

boolean fragmentTransaction = false;
Fragment fragment = null;

switch (menuItem.getItemId()) {
case R.id.nav_home:
getSupportFragmentManager().beginTransaction().replace(R.id.fragment_container,
new HomeFragment()).commit();
titleToolbar = getResources().getString(R.string.Menu_Home);
fragmentTransaction = true;
getSupportActionBar().setTitle(titleToolbar);
break;

case R.id.nav_receipts:
getSupportFragmentManager().beginTransaction().replace(R.id.fragment_container,
new ReceiptsFragment()).commit();
titleToolbar = getResources().getString(R.string.Menu_Receipts);
fragmentTransaction = true;
getSupportActionBar().setTitle(titleToolbar);
break;

最佳答案

XML:

<androidx.appcompat.widget.LinearLayoutCompat
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">

<com.google.android.material.tabs.TabLayout
android:id="@+id/tabs"
style="@style/TabStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:elevation="5dp"
app:tabMode="scrollable" />

<androidx.viewpager.widget.ViewPager
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="match_parent" />

</androidx.appcompat.widget.LinearLayoutCompat>

样式

 <style name="TabStyle" parent="Widget.Design.TabLayout">
<item name="android:background">@color/colorPrimary</item>
<item name="tabTextAppearance">@style/TabTextStyle</item>
<item name="tabIndicatorColor">@color/white</item>
<item name="tabTextColor">@color/red_light</item>
<item name="tabSelectedTextColor">@color/white</item>
</style>

<style name="TabTextStyle" parent="TextAppearance.AppCompat.Button">
<item name="android:textSize">@dimen/_10sdp</item>
</style>

Java

public class MainActivity extends AppCompatActivity {
private SampleAdapter adapter;
private TabLayout tabs;

@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);

ViewPager pager=(ViewPager)findViewById(R.id.pager);

adapter=new SampleAdapter(this, getSupportFragmentManager());
pager.setAdapter(adapter);

tabs=(TabLayout)findViewById(R.id.tabs);
tabs.setupWithViewPager(pager);
tabs.setTabMode(TabLayout.MODE_SCROLLABLE);
}
}

根据 tabItem 在 Adapter 中分配 fragment

关于java - 当我选择 TabItem 时它位于中心,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60484356/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com