首次使用

2021-12-14  本文已影响0人  战神熊猫宝宝

糖尿病人手册

西红柿豆腐汤

做法儿:将豆腐和西红柿洗干净,切小块; 锅置火上5分钟,倒油烧热,倒入豆腐,西红柿翻炒,加适量水煮5分钟,用盐调味, 撒上葱花,即可

兰花 炒 虾仁儿  炒香干

清蒸基围虾 

清炖排骨:肉要少

白菜炒肉片:肉片烧,白菜多,少油

苦瓜炒肉片

秋葵,冬瓜,南瓜,可炒,可做汤吃

五彩滨纷: 胡萝卜、木耳、小西葫芦炒到七分熟 加入少量食盐,加盐后会出一点汤,赶紧放入提前炒好的鸡蛋,即增加了鲜味儿,又把少量汤吸收了

日常喝的

能吃的水果

圣女果、桂圆、金桔、火龙果,柚子,适当食用,不能多吃

吃一点瘦肉,小碗饭; 最主要:少吃多餐

public int getRandomColor() {
  Random rnd =new Random();
  return Color.argb(255, rnd.nextInt(256), rnd.nextInt(256), rnd.nextInt(256));
}
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal">

    <RelativeLayout
        android:layout_width="72dp"
        android:layout_height="match_parent">

        <View
            android:id="@+id/crowUpperLine"
            android:layout_width="25dp"
            android:layout_height="match_parent"
            android:layout_above="@+id/crowImg"
            android:layout_centerInParent="true"
            android:layout_centerVertical="true"
            android:background="@android:color/darker_gray" />

        <View
            android:id="@+id/crowLowerLine"
            android:layout_width="25dp"
            android:layout_height="match_parent"
            android:layout_below="@+id/crowImg"
            android:layout_centerInParent="true"
            android:layout_centerVertical="true"
            android:background="@android:color/darker_gray" />


        <View
            android:id="@+id/crowBackground"
            android:layout_width="25dp"
            android:layout_height="25dp"
            android:layout_centerInParent="true"
            android:layout_centerVertical="true"
            android:background="@drawable/circle_shape" />

        <ImageView
            android:id="@+id/crowImg"
            android:layout_width="25dp"
            android:layout_height="25dp"
            android:layout_centerInParent="true"
            android:layout_centerVertical="true"
            android:layout_marginTop="-12.5dp"
            android:layout_marginBottom="-12.5dp" />


    </RelativeLayout>

    <RelativeLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:padding="20dp">

        <TextView
            android:id="@+id/crowDate"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Date"
            android:textAppearance="?android:attr/textAppearanceSmall" />

        <TextView
            android:id="@+id/crowTitle"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_below="@id/crowDate"
            android:layout_centerVertical="true"
            android:text="Title"
            android:textAppearance="?android:attr/textAppearanceListItem"
            android:textStyle="bold" />

        <TextView
            android:id="@+id/crowDesc"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_below="@id/crowTitle"
            android:layout_centerVertical="true"
            android:text="Description"
            android:textAppearance="?android:attr/textAppearanceSearchResultSubtitle" />

    </RelativeLayout>

</LinearLayout>
上一篇 下一篇

猜你喜欢

热点阅读