📅  最后修改于: 2021-01-05 08:30:25             🧑  作者: Mango
Android TabLayout是用于构建水平制表符的布局。在本教程中,使用带有ViewPager的Android TabLayout,我们使用newTab()方法创建了TabLayout的标签,但是这些标签也可以在布局活动中使用android.support.design.widget.TabItem来实现。
通过分别实现text和icon属性来提供选项卡的标题和图标。
要为TabLayout的每个选项卡提供空间,我们可以使用FrameLayout。 FrameLayout旨在覆盖屏幕上的区域以显示单个项目。
在此示例中,我们将使用TabItem和FrameLayout创建TabLayout。
在build.gradle文件中添加以下依赖项。
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation 'com.android.support:support-v4:26.1.0'
testImplementation 'junit:junit:4.12'
implementation 'com.android.support:design:26.1.0'
在activity_main.xml布局文件中添加TabLayout,TabItem和FrameLayout。
Kotlin TabLayout with FrameLayout
Java fragment
Android fragment
Kotlin fragment
Php fragment
Python fragment
#03DAC6
#aeded9
#00a294
在MainActivity.kt类中添加以下代码。在此类中,我们创建TabLayout和FrameLayout的实例。调用TabLayout的addOnTabSelectedListener()侦听器并覆盖其方法。
package example.javatpoint.com.kotlintablayoutwithframelayout
import android.support.v7.app.AppCompatActivity
import android.os.Bundle
import android.support.design.widget.TabLayout
import android.support.v4.app.Fragment
import android.support.v4.app.FragmentManager
import android.support.v4.app.FragmentTransaction
import android.widget.FrameLayout
class MainActivity : AppCompatActivity() {
var tabLayout: TabLayout? = null
var frameLayout: FrameLayout? = null
var fragment: Fragment? = null
var fragmentManager: FragmentManager? = null
var fragmentTransaction: FragmentTransaction? = null
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
tabLayout = findViewById(R.id.tabLayout)
frameLayout = findViewById(R.id.frameLayout)
fragment = JavaFragment()
fragmentManager = supportFragmentManager
fragmentTransaction = fragmentManager!!.beginTransaction()
fragmentTransaction!!.replace(R.id.frameLayout, fragment)
fragmentTransaction!!.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_OPEN)
fragmentTransaction!!.commit()
//adding listener for tab select
tabLayout!!.addOnTabSelectedListener(object : TabLayout.OnTabSelectedListener {
override fun onTabSelected(tab: TabLayout.Tab) {
// creating cases for fragment
when (tab.position) {
0 -> fragment = JavaFragment()
1 -> fragment = AndroidFragment()
2 -> fragment = KotlinFragment()
3 -> fragment = PhpFragment()
4 -> fragment = PythonFragment()
}
val fm = supportFragmentManager
val ft = fm.beginTransaction()
ft.replace(R.id.frameLayout, fragment)
ft.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_OPEN)
ft.commit()
}
override fun onTabUnselected(tab: TabLayout.Tab) {
}
override fun onTabReselected(tab: TabLayout.Tab) {
}
})
}
}
为每个片段创建FrameLayout为New-> Fragment-> Fragment(Blank)。
package example.javatpoint.com.kotlintablayoutwithframelayout
import android.os.Bundle
import android.support.v4.app.Fragment
import android.view.LayoutInflater
import android.view.View
import android.view.ViewGroup
import android.widget.Toast
import kotlinx.android.synthetic.main.fragment_android.view.*
class JavaFragment : Fragment() {
override fun onCreateView(inflater: LayoutInflater?, container: ViewGroup?,
savedInstanceState: Bundle?): View? {
// Inflate the layout for this fragment
val view: View = inflater!!.inflate(R.layout.fragment_java, container, false)
view.androidButton!!.setOnClickListener(View.OnClickListener {
Toast.makeText(context,"java fragment", Toast.LENGTH_SHORT).show()
})
return view
}
}// Required empty public constructor
package example.javatpoint.com.kotlintablayoutwithframelayout
import android.os.Bundle
import android.support.v4.app.Fragment
import android.view.LayoutInflater
import android.view.View
import android.view.ViewGroup
import android.widget.Toast
import kotlinx.android.synthetic.main.fragment_android.view.*
class AndroidFragment : Fragment() {
override fun onCreateView(inflater: LayoutInflater?, container: ViewGroup?,
savedInstanceState: Bundle?): View? {
// Inflate the layout for this fragment
val view: View = inflater!!.inflate(R.layout.fragment_android, container, false)
view.androidButton!!.setOnClickListener(View.OnClickListener {
Toast.makeText(context,"android fragment",Toast.LENGTH_SHORT).show()
})
return view
}
}// Required empty public constructor
package example.javatpoint.com.kotlintablayoutwithframelayout
import android.os.Bundle
import android.support.v4.app.Fragment
import android.view.LayoutInflater
import android.view.View
import android.view.ViewGroup
import android.widget.Toast
import kotlinx.android.synthetic.main.fragment_android.view.*
class KotlinFragment : Fragment() {
override fun onCreateView(inflater: LayoutInflater?, container: ViewGroup?,
savedInstanceState: Bundle?): View? {
// Inflate the layout for this fragment
val view: View = inflater!!.inflate(R.layout.fragment_kotlin, container, false)
view.androidButton!!.setOnClickListener(View.OnClickListener {
Toast.makeText(context,"kotlin fragment", Toast.LENGTH_SHORT).show()
})
return view
}
}// Required empty public constructor
package example.javatpoint.com.kotlintablayoutwithframelayout
import android.os.Bundle
import android.support.v4.app.Fragment
import android.view.LayoutInflater
import android.view.View
import android.view.ViewGroup
import android.widget.Toast
import kotlinx.android.synthetic.main.fragment_android.view.*
class PhpFragment : Fragment() {
override fun onCreateView(inflater: LayoutInflater?, container: ViewGroup?,
savedInstanceState: Bundle?): View? {
// Inflate the layout for this fragment
val view: View = inflater!!.inflate(R.layout.fragment_php, container, false)
view.androidButton!!.setOnClickListener(View.OnClickListener {
Toast.makeText(context,"php fragment", Toast.LENGTH_SHORT).show()
})
return view
}
}// Required empty public constructor
package example.javatpoint.com.kotlintablayoutwithframelayout
import android.os.Bundle
import android.support.v4.app.Fragment
import android.view.LayoutInflater
import android.view.View
import android.view.ViewGroup
import android.widget.Toast
import kotlinx.android.synthetic.main.fragment_android.view.*
class PythonFragment : Fragment() {
override fun onCreateView(inflater: LayoutInflater?, container: ViewGroup?,
savedInstanceState: Bundle?): View? {
// Inflate the layout for this fragment
val view: View = inflater!!.inflate(R.layout.fragment_python, container, false)
view.androidButton!!.setOnClickListener(View.OnClickListener {
Toast.makeText(context,"python fragment", Toast.LENGTH_SHORT).show()
})
return view
}
}// Required empty public constructor
输出: