阶段一冲刺三

昨天完成了TextView

button

editview的复习以及进行了代码实践

今天任务

复习RadioButton

checkedbutton

imageview以及gradle的使用

并且进行代码实践

 

 

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <ImageView
        android:id="@+id/image_1"
        android:layout_width="match_parent"
        android:layout_height="200dp"
        android:background="#FF9900"
        android:src="@mipmap/bg"
        android:scaleType="fitXY"
        >
    </ImageView>

    <ImageView
        android:id="@+id/image_2"
        android:layout_width="match_parent"
        android:layout_height="250dp"
        android:layout_below="@id/image_1"
        android:background="#FF9900"
        android:scaleType="fitXY"
        android:layout_marginTop="10dp"
        >
    </ImageView>



</RelativeLayout>

 

posted @ 2022-05-02 16:01  软工小蜗牛  阅读(57)  评论(0编辑  收藏  举报