Kotlin實(shí)戰(zhàn)筆記——RadioGroup&ViewPager

RadioGroup&ViewPager

既然學(xué)習(xí)了Kotlin,那么就用Kotlin實(shí)現(xiàn)一個(gè)簡單的常見Android APP的布局框架姥闭。

首先在MainActivity布局文件中,添加我們需要用到的的控件

其實(shí)這里的RadioButton中很多相同的屬性我們可以抽出來放在Style中裸准,在真實(shí)的項(xiàng)目開發(fā)中脚乡,我們有必要這么做;真實(shí)項(xiàng)目開發(fā)中這些很多東西很少在布局中心寫死寄雀,這里要注意5寐恕!盒犹!

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:layout_width="match_parent" android:layout_height="match_parent"
        tools:context=".MainActivity">

    <android.support.v4.view.ViewPager
            android:layout_width="0dp"
            android:layout_height="0dp"
            app:layout_constraintRight_toRightOf="parent"
            app:layout_constraintLeft_toLeftOf="parent"
            app:layout_constraintTop_toTopOf="parent"
            app:layout_constraintBottom_toTopOf="@id/rg_main"
            android:id="@+id/vp_main">

    </android.support.v4.view.ViewPager>

    <RadioGroup
            android:layout_width="0dp"
            android:layout_height="45dp"
            android:orientation="horizontal"
            app:layout_constraintTop_toBottomOf="@id/vp_main"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintLeft_toLeftOf="parent"
            app:layout_constraintRight_toRightOf="parent"
            android:id="@+id/rg_main">

        <RadioButton
                android:layout_width="0dp"
                android:layout_height="match_parent"
                android:textColor="@drawable/rb_checked"
                android:gravity="center"
                android:background="#F67"
                android:button="@null"
                android:layout_weight="1"
                android:checked="true"
                android:id="@+id/rb_index"
                android:textSize="18sp"
                android:text="首頁"
        />
        <RadioButton
                android:layout_width="0dp"
                android:layout_height="match_parent"
                android:layout_weight="1"
                android:background="#a67"
                android:id="@+id/rb_circle"
                android:button="@null"
                android:textColor="@drawable/rb_checked"
                android:textSize="18sp"
                android:gravity="center"
                android:text="圈子"
        />
        <RadioButton
                android:id="@+id/rb_my"
                android:layout_width="0dp"
                android:textSize="18sp"
                android:layout_weight="1"
                android:background="#888"
                android:button="@null"
                android:textColor="@drawable/rb_checked"
                android:gravity="center"
                android:layout_height="match_parent"
                android:text="我的"
        />

    </RadioGroup>

</android.support.constraint.ConstraintLayout>

創(chuàng)建Fragment懂更,并且直接通過提示把布局創(chuàng)建出來

  • 首頁
import android.os.Bundle
import android.support.v4.app.Fragment
import android.view.LayoutInflater
import android.view.View
import android.view.ViewGroup
import com.example.allen.constraintlayouttest01.R

/**
 * Created by Sin on 2019/1/10
 */
class IndexFragment:Fragment() {
    override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?): View? {

        var fmView:View = inflater.inflate(R.layout.fragment_index,container,false)
        return fmView
    }
}
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:layout_width="match_parent"
        android:layout_height="match_parent">
    
    <TextView android:layout_width="0dp"
              android:layout_height="0dp"
              app:layout_constraintRight_toRightOf="parent"
              app:layout_constraintLeft_toLeftOf="parent"
              app:layout_constraintTop_toTopOf="parent"
              app:layout_constraintBottom_toBottomOf="parent"
              android:text="首頁界面"
              android:gravity="center"
              android:textSize="30sp"/>

</android.support.constraint.ConstraintLayout>
  • 圈子
import android.os.Bundle
import android.support.v4.app.Fragment
import android.view.LayoutInflater
import android.view.View
import android.view.ViewGroup
import com.example.allen.constraintlayouttest01.R

/**
 * Created by Sin on 2019/1/10
 */
class CircleFragment : Fragment() {

    override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?): View? {
        var fmView: View = inflater.inflate(R.layout.fragment_circle, container, false)
        return fmView
    }
}
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

    <TextView android:layout_width="0dp"
              android:layout_height="0dp"
              app:layout_constraintRight_toRightOf="parent"
              app:layout_constraintLeft_toLeftOf="parent"
              app:layout_constraintTop_toTopOf="parent"
              app:layout_constraintBottom_toBottomOf="parent"
              android:text="圈子界面"
              android:gravity="center"
              android:textSize="30sp"/>

</android.support.constraint.ConstraintLayout>
  • 我的
import android.os.Bundle
import android.support.v4.app.Fragment
import android.view.LayoutInflater
import android.view.View
import android.view.ViewGroup
import com.example.allen.constraintlayouttest01.R

/**
 * Created by Sin on 2019/1/10
 */
class MyFragment:Fragment() {

    override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?): View? {
        var fmView:View = inflater.inflate(R.layout.fragment_my,container,false)
        return fmView
    }
}
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

    <TextView android:layout_width="0dp"
              android:layout_height="0dp"
              app:layout_constraintRight_toRightOf="parent"
              app:layout_constraintLeft_toLeftOf="parent"
              app:layout_constraintTop_toTopOf="parent"
              app:layout_constraintBottom_toBottomOf="parent"
              android:text="我的界面"
              android:gravity="center"
              android:textSize="30sp"/>

</android.support.constraint.ConstraintLayout>

創(chuàng)建適配器

import android.support.v4.app.Fragment
import android.support.v4.app.FragmentManager
import android.support.v4.app.FragmentStatePagerAdapter

/**
 * Created by Sin on 2019/1/10
 */
class ViewPagerAdapter(var fmlist: List<Fragment>, fm: FragmentManager?) : FragmentStatePagerAdapter(fm) {

    override fun getItem(p0: Int) = fmlist[p0]

    override fun getCount() = fmlist.size

}

接下來我們就可以直接在MainActivity中使用了

import android.os.Bundle
import android.support.v4.view.ViewPager
import android.support.v7.app.AppCompatActivity
import com.example.allen.constraintlayouttest01.adapter.ViewPagerAdapter
import com.example.allen.constraintlayouttest01.fragment.CircleFragment
import com.example.allen.constraintlayouttest01.fragment.IndexFragment
import com.example.allen.constraintlayouttest01.fragment.MyFragment
import kotlinx.android.synthetic.main.activity_main.*

class MainActivity : AppCompatActivity() {

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)

        initView()
        setFragment()
        setEvent()
    }

    private fun setEvent() {
        rg_main.setOnCheckedChangeListener { group, checkedId ->
            when (checkedId) {
                R.id.rb_index -> vp_main.setCurrentItem(0)
                R.id.rb_circle -> vp_main.setCurrentItem(1)
                R.id.rb_my -> vp_main.setCurrentItem(2)
            }
        }
        vp_main.setOnPageChangeListener(object : ViewPager.OnPageChangeListener {
            override fun onPageScrolled(p0: Int, p1: Float, p2: Int) {

            }

            override fun onPageSelected(p0: Int) = rg_main.check(rg_main.getChildAt(p0).id)

            override fun onPageScrollStateChanged(p0: Int) {

            }
        })
    }

    private fun setFragment() {
        val fm1 = IndexFragment()
        val fm2 = CircleFragment()
        val fm3 = MyFragment()
        val list = listOf(fm1, fm2, fm3)

        vp_main.adapter = ViewPagerAdapter(list, supportFragmentManager)

    }

    private fun initView() {

        setContentView(R.layout.activity_main)
    }
}

效果圖

com.example.allen.constraintlayouttest01.gif
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市急膀,隨后出現(xiàn)的幾起案子沮协,更是在濱河造成了極大的恐慌,老刑警劉巖卓嫂,帶你破解...
    沈念sama閱讀 206,378評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件慷暂,死亡現(xiàn)場離奇詭異,居然都是意外死亡晨雳,警方通過查閱死者的電腦和手機(jī)行瑞,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,356評論 2 382
  • 文/潘曉璐 我一進(jìn)店門奸腺,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人血久,你說我怎么就攤上這事洋机。” “怎么了洋魂?”我有些...
    開封第一講書人閱讀 152,702評論 0 342
  • 文/不壞的土叔 我叫張陵,是天一觀的道長副砍。 經(jīng)常有香客問我,道長豁翎,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,259評論 1 279
  • 正文 為了忘掉前任心剥,我火速辦了婚禮邦尊,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘优烧。我一直安慰自己,他們只是感情好畦娄,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,263評論 5 371
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著熙卡,像睡著了一般杖刷。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上驳癌,一...
    開封第一講書人閱讀 49,036評論 1 285
  • 那天滑燃,我揣著相機(jī)與錄音颓鲜,去河邊找鬼。 笑死灾杰,一個(gè)胖子當(dāng)著我的面吹牛熙参,可吹牛的內(nèi)容都是我干的艳吠。 我是一名探鬼主播孽椰,決...
    沈念sama閱讀 38,349評論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼凛篙,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了呛梆?” 一聲冷哼從身側(cè)響起磕诊,我...
    開封第一講書人閱讀 36,979評論 0 259
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎霎终,沒想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體莱褒,經(jīng)...
    沈念sama閱讀 43,469評論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,938評論 2 323
  • 正文 我和宋清朗相戀三年阅茶,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了谅海。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,059評論 1 333
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡扭吁,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出智末,到底是詐尸還是另有隱情,我是刑警寧澤系馆,帶...
    沈念sama閱讀 33,703評論 4 323
  • 正文 年R本政府宣布,位于F島的核電站闽寡,受9級(jí)特大地震影響尼酿,放射性物質(zhì)發(fā)生泄漏爷狈。R本人自食惡果不足惜裳擎,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,257評論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧羡微,春花似錦谷饿、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,262評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽毅哗。三九已至捧挺,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間松忍,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,485評論 1 262
  • 我被黑心中介騙來泰國打工宏所, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人爬骤。 一個(gè)月前我還...
    沈念sama閱讀 45,501評論 2 354
  • 正文 我出身青樓莫换,卻偏偏與公主長得像霞玄,于是被迫代替她去往敵國和親拉岁。 傳聞我的和親對象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,792評論 2 345