亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

android底部按鈕設置的方法是什么

小億
126
2024-03-20 15:50:54
欄目: 編程語言

在Android中,可以通過布局文件或者代碼來設置底部按鈕。以下是兩種常見的方法:

  1. 使用布局文件設置底部按鈕: 在布局文件中添加一個LinearLayout或者RelativeLayout作為底部導航欄,并在其中添加Button或者其他視圖作為按鈕。例如:
<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    android:gravity="bottom">

    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button 1" />

    <Button
        android:id="@+id/button2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button 2" />

</LinearLayout>
  1. 使用代碼設置底部按鈕: 在Activity或Fragment中通過代碼創建并設置底部按鈕。例如:
LinearLayout layout = new LinearLayout(this);
layout.setOrientation(LinearLayout.HORIZONTAL);
layout.setGravity(Gravity.BOTTOM);

Button button1 = new Button(this);
button1.setText("Button 1");

Button button2 = new Button(this);
button2.setText("Button 2");

layout.addView(button1);
layout.addView(button2);

// 將底部按鈕添加到布局中
RelativeLayout.LayoutParams layoutParams = new RelativeLayout.LayoutParams(
        RelativeLayout.LayoutParams.MATCH_PARENT,
        RelativeLayout.LayoutParams.WRAP_CONTENT);
layoutParams.addRule(RelativeLayout.ALIGN_PARENT_BOTTOM);
layout.setLayoutParams(layoutParams);
RelativeLayout mainLayout = findViewById(R.id.main_layout);
mainLayout.addView(layout);

通過以上方法,可以實現在Android應用中設置底部按鈕。

0
壤塘县| 满洲里市| 安吉县| 雷州市| 漾濞| 大兴区| 正蓝旗| 古田县| 大埔县| 崇州市| 江永县| 漳州市| 昌邑市| 荆门市| 金山区| 隆化县| 乐业县| 门头沟区| 沁阳市| 张北县| 阳朔县| 武川县| 县级市| 杭锦旗| 富阳市| 丹棱县| 阳原县| 任丘市| 策勒县| 准格尔旗| 桐乡市| 和龙市| 集安市| 靖安县| 克什克腾旗| 福安市| 尚志市| 黄陵县| 视频| 海原县| 竹溪县|