gpt4 book ai didi

java - 制作按钮下方的布局

转载 作者:行者123 更新时间:2023-12-01 19:29:18 25 4
gpt4 key购买 nike

在我的一个 fragment 类中,它的顶部有两个按钮(A 和 B),用于在使用 viewPager 单击时切换到另一个 fragment 。

当点击buttonA时,应该切换到A页面,依此类推。

当我点击按钮A时,如何让A中的文字显示在两个按钮的下方?

fragment_menu.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">

<Button
android:id="@+id/buttonA"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="15dp"
android:layout_marginTop="10dp"
android:padding="15dp"
android:text="ButtonA"
android:textSize="12sp" />


<Button
android:id="@+id/buttonB"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_marginLeft="15dp"
android:layout_marginTop="10dp"
android:layout_marginRight="15dp"
android:layout_toRightOf="@+id/buttonB"
android:backgroundTint="@color/materialGrey600"
android:padding="15dp"
android:text="ButtonB"
android:textSize="12sp" />


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


</RelativeLayout>

菜单 fragment

public class MenuFragment extends BaseFragment {


@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Inflate the layout for this fragment
View v = inflater.inflate(R.layout.fragment_menu, container, false);
final ViewPager viewPager = (ViewPager) v.findViewById(R.id.pager);
viewPager.setAdapter(new ViewPagerAdapter(getActivity().getFragmentManager()));

Button btnA = (Button) v.findViewById(R.id.buttonA);
Button btnB = (Button) v.findViewById(R.id.buttonB);

btnA.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
viewPager.setCurrentItem(0, true);
}
});

btnB.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
viewPager.setCurrentItem(1, true);
}
});
return v;
}
}

ViewPagerAdapter

  public class ViewPagerAdapter extends FragmentPagerAdapter {

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

@Override
public Fragment getItem(int position) {
switch (position)
{
case 0:
return new A()
case 1:
return new B()

}
return null;
}



@Override
public int getCount() {
return 2;
}
}

输出

enter image description here

最佳答案

尝试使用下面的代码。希望对您有帮助;)附:您只需根据需要设置按钮样式即可:)

  <RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">

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


<LinearLayout
android:id="@+id/llButton"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_alignParentBottom="true"
android:layout_marginBottom="10dp">

<Button
android:id="@+id/buttonA"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:padding="15dp"
android:text="ButtonA"
android:textSize="12sp" />


<Button
android:id="@+id/buttonB"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="15dp"
android:layout_marginTop="10dp"
android:layout_marginRight="15dp"
android:backgroundTint="@color/colorAccent"
android:padding="15dp"
android:text="ButtonB"
android:textSize="12sp" />

</LinearLayout>


</RelativeLayout>

关于java - 制作按钮下方的布局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60260611/

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