首页 > 代码库 > android总结

android总结

学了一个月的android,首先先下载安装android studio和android SDK

技术分享

自己没有SDK,需要从网络下载;打开向导的Configure-Settings,在查找框里面输入proxy,找到下面的HTTP Proxy,设置代理服务器,并且将Force https://… sources to be fetched using http://选中,然后退出将上面在idea.properties配置文件中添加的那条配置项注释掉重新打开Android Studio等刚开始的向导把Android SDK下载安装完成就可以了。

自己有SDK,重新指定SDK路径;打开向导的Configure->Project Defaults->Project Structure,在此填入你已有的SDK路径。

接下来进入到了工程界面下:

技术分享

 

 然后最近一次作业总结

 首先是

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:textSize="40dp"
android:text="Please choose a flower you like!!!!!"
android:ellipsize="marquee"
android:marqueeRepeatLimit="marquee_forever"
android:focusable="ture"
android:focusableInTouchMode="true"
android:singleLine="true"/>


<ImageView
android:layout_width="250dp"
android:layout_height="250dp"
android:layout_gravity="center"
android:id="@+id/image_pic" />

<RadioGroup
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:id="@+id/group_huaming1"
android:layout_gravity="center">
<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="梅花"
android:id="@+id/rbtn_meihua"/>

<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="石楠花"
android:id="@+id/rbtn_shinan"/>

<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="象牙华"
android:id="@+id/rbtn_xiangya"/>

</RadioGroup>

<RadioGroup
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:id="@+id/group_huaming2"
android:layout_gravity="center">
<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="绣球花"
android:id="@+id/rbtn_xiuqiu"/>

<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="玉兰花"
android:id="@+id/rbtn_yulan"/>

<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="牡丹花"
android:id="@+id/rbtn_mudan"/>

</RadioGroup>

技术分享

以及一些运行代码。。还是有很多地方要学习!

 

                    另外请大神轻喷~~

android总结