第一天學習Android的一些筆記

昨天學習了怎樣裝Android配置環境,下載SDK用了很久的時間,再加上一開始不會,弄了好長時間,今天第一天學習,跟着視頻教程學的。下邊是個人一些筆記,僅作留念與學習筆記 。java

快捷鍵:
android

智能提示:Alt和/組合,進行智能提示。
行註釋/銷註釋 Ctrl+/  塊註釋/銷註釋/XML註釋 Ctrl+Shift+/   Ctrl+Shift+\
查找 查找替換 Ctrl+H  Ctrl+F
查找下一個/往回找 Ctrl+K   Ctrl+Shift+K
跳到某行 Ctrl+L,哈用慣了Editplus,不時會敲下Ctrl+G,
查找當前元素的聲明 Ctrl+G
查找當前元素的全部引用 Ctrl+Shift+G
從新組織Import Ctrl+Shift+O,能幫你一次去掉全部未使用的Import聲明!
快速修正 Ctrl+1
引入某個類(接口)ctrl + shift + m
加頭註釋 shift + alt + j

======================================================
一:TextView的屬性
創建文字:
web

TextView tv=new TextView(this);
tv.setText("你好");
setContentView(tv);


===========================

更改一段文字的一部分:
shell

TextView tv = (TextView)findViewById(R.id.tv);
tv.setText(Html.fromHtml("歡迎你們用<font color=blue>Android</font>系列課程,感謝你們的支持!"));


===========================
    
更改一段文字三段顏色:
學習

TextView tv    = (TextView)findViewById(R.id.tv);
String str="歡迎你們使用Android系列,感謝你們的支持!";
SpannableStringBuilder style=new SpannableStringBuilder(str);
style.setSpan(new ForegroundColorSpan(Color.RED), 0, 6, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
style.setSpan(new ForegroundColorSpan(Color.GREEN), 6, 21, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
style.setSpan(new ForegroundColorSpan(Color.BLUE), 21, 34, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
tv.setText(style);


===========================

設置超連接,電話等:  android:autoLink="all"  //有六種方式 none,web,phone,email,map,all
ui

<TextView 
        android:id="@+id/tv"
        android:autoLink="all"  //有六種方式 none,web,phone,email,map,all
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:textSize="12sp"
        android:textColor="#00FF00"
        android:text="歡迎你們使用Android系列,感謝你們的支持!\n個人博客:http://www.360sites.cn,個人手機號是18903467858"
        />


===========================

跑馬燈效果 android:ellipsize    adroid:marqueeRepeatLimit
this

<TextView 
        android:id="@+id/tv"
        android:autoLink="phone"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:textSize="12sp"
        android:singleLine="true"
        android:textColor="#00FF00"
        android:ellipsize="marquee"
        android:marqueeRepeatLimit="marquee_forever"
        android:focusableInTouchMode="true"
        android:text="歡迎你們使用Android系列,感謝你們的支持!個人博客:http://www.baidu.com,個人手機號是18903467858"
        />



======================================================

二:EditText的一些屬性
code

 <EditText 
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:maxLength="11"                        最大輸入字符數
        android:singleLine="true"                    單一行
        android:inputType="number"                    只能輸入數字
        android:hint="請輸入數字"                    提示
        android:drawableLeft="@drawable/title"      此爲左邊有一個小圖片
        />


===========================

EditText設置爲圓角
一:在layout中設置視頻

android:background="@drawable/shape"

二:在drawable中加shape.xml文件,內容爲
xml

<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
    <!-- 填充的顏色 -->
    <solid android:color="#FFFFFF"/>
    <!-- 設置矩形的四個角爲弧形 -->
    <!-- android:radius 弧形的半徑 -->
    <corners android:radius="7dip"/>
</shape>
相關文章
相關標籤/搜索