LifeCycle & Room & dataBinding sample

這個 sample 的簡單需求:

獲取數據庫中的數據, 并展示為 list, 點擊后進入詳情頁

數據庫設計

字段名 說明
id primary key
name 名稱
description 描述
price 價格

1.entity table表的實體類
使用 arch.room 類進行綁定

@Entity(tableName = "products")
public class ProductEntity implements Product {
    @PrimaryKey
    private int id;
    private String name;
    private String description;
    private int price;
}

2.DAO android 調用的接口
使用 arch.room 進行數據庫的使用, 類似retrofit
CRUD
功能1: 獲取全部products
功能2: 插入所有
功能3: 根據 id 取1個 product

@Dao
public interface ProductDao {
    @Query("SELECT * FROM products")
    LiveData<List<ProductEntity>> loadAllProducts();

    @Insert(onConflict = OnConflictStrategy.REPLACE)
    void insertAll(List<ProductEntity> products);

    @Query("select * from products where id = :productId")
    LiveData<ProductEntity> loadProduct(int productId);

}

3.viewModel
arch.lifecycle 的 viewModel

public class ProductViewModel extends AndroidViewModel {
        public ProductViewModel(@NonNull Application application,
                            final int productId) {
        super(application);
        mProductId = productId;

        final DatabaseCreator databaseCreator = DatabaseCreator.getInstance(this.getApplication());

        mObservableComments = Transformations.switchMap(databaseCreator.isDatabaseCreated(), new Function<Boolean, LiveData<List<CommentEntity>>>() {
            @Override
            public LiveData<List<CommentEntity>> apply(Boolean isDbCreated) {
                if (!isDbCreated) {
                    //noinspection unchecked
                    return ABSENT;
                } else {
                    //noinspection ConstantConditions
                    return databaseCreator.getDatabase().commentDao().loadComments(mProductId);
                }
            }
        });
        databaseCreator.createDb(this.getApplication());

    }
}

4.dataBinding
在 gradle 中使用 dataBingding 進行 xml 和 java 的綁定

dataBinding {
        enabled = true
    }

5.list_fragment.xml 和 ProductListFragment.xml 之間的關系
在 listfragment 這頁面, 根據數據是否獲取成功, 展示 loading 頁面和 list 頁面

使用@ BindingAdapter("visibleOrGone")
用 java代碼實現app:visibleOrGone="@{isLoading}" 邏輯

public class BindingAdapters {
    @BindingAdapter("visibleOrGone")
    public static void showHide(View view, boolean show) {
        view.setVisibility(show ? View.VISIBLE : View.GONE);
    }
}

在.xml 中使用app:visibleOrGone="@{isLoading}"動態(tài)判斷

<layout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto">

    <data>
        <variable
            name="isLoading"
            type="boolean" />
    </data>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@color/cardview_light_background"
        android:orientation="vertical">

        <TextView
            android:id="@+id/loading_tv"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:gravity="center_vertical|center_horizontal"
            android:text="@string/loading_products"
            android:textAlignment="center"
            app:visibleOrGone="@{isLoading}"
            />

        <android.support.v7.widget.RecyclerView
            android:id="@+id/products_list"
            android:contentDescription="@string/cd_products_list"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:layoutManager="LinearLayoutManager"
            app:visibleOrGone="@{!isLoading}"/>

    </LinearLayout>
</layout>

6.如何把 entity 和頁面對應:
使用

 <variable name="product"
                  type="com.example.android.persistence.model.Product"/>
android:text="@{product.name}"

和 textview 進行一一對應
然后使用

<variable name="callback" type="com.example.android.persistence.ui.ProductClickCallback"/>
android:onClick="@{() ->  callback.onClick(product)}"

和點擊事件綁定

<layout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto">
    <data>
        <variable name="product"
                  type="com.example.android.persistence.model.Product"/>
        <variable name="callback"
                  type="com.example.android.persistence.ui.ProductClickCallback"/>
    </data>

    <android.support.v7.widget.CardView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:minHeight="@dimen/product_item_min_height"
        android:onClick="@{() ->  callback.onClick(product)}"
        android:orientation="horizontal"
        android:layout_marginStart="@dimen/item_horizontal_margin"
        android:layout_marginEnd="@dimen/item_horizontal_margin"
        app:cardUseCompatPadding="true">

        <RelativeLayout
            android:layout_marginStart="@dimen/item_horizontal_margin"
            android:layout_marginEnd="@dimen/item_horizontal_margin"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">

            <TextView
                android:id="@+id/name"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:contentDescription="@string/cd_product_name"
                android:text="@{product.name}"/>

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentEnd="true"
                android:layout_marginEnd="5dp"
                android:text="@{@string/product_price(product.price)}"/>

            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_below="@id/name"
                android:text="@{product.description}"/>
        </RelativeLayout>

    </android.support.v7.widget.CardView>
</layout>
最后編輯于
?著作權歸作者所有,轉載或內容合作請聯系作者
  • 序言:七十年代末魂莫,一起剝皮案震驚了整個濱河市轩拨,隨后出現的幾起案子,更是在濱河造成了極大的恐慌档悠,老刑警劉巖痘番,帶你破解...
    沈念sama閱讀 211,743評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件懂牧,死亡現場離奇詭異,居然都是意外死亡握巢,警方通過查閱死者的電腦和手機抹腿,發(fā)現死者居然都...
    沈念sama閱讀 90,296評論 3 385
  • 文/潘曉璐 我一進店門岛请,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人警绩,你說我怎么就攤上這事崇败。” “怎么了肩祥?”我有些...
    開封第一講書人閱讀 157,285評論 0 348
  • 文/不壞的土叔 我叫張陵后室,是天一觀的道長。 經常有香客問我混狠,道長岸霹,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,485評論 1 283
  • 正文 為了忘掉前任将饺,我火速辦了婚禮贡避,結果婚禮上,老公的妹妹穿的比我還像新娘予弧。我一直安慰自己刮吧,他們只是感情好,可當我...
    茶點故事閱讀 65,581評論 6 386
  • 文/花漫 我一把揭開白布掖蛤。 她就那樣靜靜地躺著皇筛,像睡著了一般。 火紅的嫁衣襯著肌膚如雪坠七。 梳的紋絲不亂的頭發(fā)上水醋,一...
    開封第一講書人閱讀 49,821評論 1 290
  • 那天,我揣著相機與錄音彪置,去河邊找鬼拄踪。 笑死,一個胖子當著我的面吹牛拳魁,可吹牛的內容都是我干的惶桐。 我是一名探鬼主播,決...
    沈念sama閱讀 38,960評論 3 408
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼姚糊!你這毒婦竟也來了贿衍?” 一聲冷哼從身側響起,我...
    開封第一講書人閱讀 37,719評論 0 266
  • 序言:老撾萬榮一對情侶失蹤救恨,失蹤者是張志新(化名)和其女友劉穎贸辈,沒想到半個月后,有當地人在樹林里發(fā)現了一具尸體肠槽,經...
    沈念sama閱讀 44,186評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡擎淤,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內容為張勛視角 年9月15日...
    茶點故事閱讀 36,516評論 2 327
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現自己被綠了秸仙。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片嘴拢。...
    茶點故事閱讀 38,650評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖寂纪,靈堂內的尸體忽然破棺而出席吴,到底是詐尸還是另有隱情,我是刑警寧澤捞蛋,帶...
    沈念sama閱讀 34,329評論 4 330
  • 正文 年R本政府宣布抢腐,位于F島的核電站,受9級特大地震影響襟交,放射性物質發(fā)生泄漏。R本人自食惡果不足惜伤靠,卻給世界環(huán)境...
    茶點故事閱讀 39,936評論 3 313
  • 文/蒙蒙 一捣域、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧宴合,春花似錦焕梅、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,757評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至阀蒂,卻和暖如春该窗,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背蚤霞。 一陣腳步聲響...
    開封第一講書人閱讀 31,991評論 1 266
  • 我被黑心中介騙來泰國打工酗失, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人昧绣。 一個月前我還...
    沈念sama閱讀 46,370評論 2 360
  • 正文 我出身青樓规肴,卻偏偏與公主長得像,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子拖刃,可洞房花燭夜當晚...
    茶點故事閱讀 43,527評論 2 349

推薦閱讀更多精彩內容