您好,登錄后才能下訂單哦!
在Android的TabLayout中添加Button,您需要遵循以下步驟:
implementation 'com.google.android.material:material:1.4.0'
<com.google.android.material.tabs.TabLayout
android:id="@+id/tabLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:tabMode="fixed" />
<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical">
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Custom Button" />
</LinearLayout>
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.widget.Button;
import com.google.android.material.tabs.TabLayout;
public class MainActivity extends AppCompatActivity {
private TabLayout tabLayout;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
tabLayout = findViewById(R.id.tabLayout);
// Inflate the custom tab layout
LayoutInflater inflater = LayoutInflater.from(this);
View customTabView = inflater.inflate(R.layout.custom_tab, null);
// Find the button in the custom tab layout
Button button = customTabView.findViewById(R.id.button);
// Add the custom tab to the TabLayout
tabLayout.addTab(tabLayout.newTab().setCustomView(customTabView));
}
}
現(xiàn)在,您應該在TabLayout中看到一個包含Button的自定義選項卡。您可以根據(jù)需要為Button設置點擊監(jiān)聽器以執(zhí)行相應操作。
免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內容。