android問題記錄

來源:互聯網
上載者:User

1.Error generating final archive: Debug certificate expired on 錯誤解決辦法
在Eclipse菜單Window -> Preferences -> Android -> Build,找到那個Default debug keystore顯示的路徑,就是debug.keystore這個檔案(expired)到期了,所以不論Windows系統還是Linux系統,只要刪除這個debug.keystore就行了,Eclipse會自動產生一個新的,預設有效期間也是一年。

2.開啟手機log
在撥號介面輸入:*#*#2846579#*#* 進入測試菜單介面。
Project Menu–後台設定–LOG設定
LOG開關–LOG開啟 LOG層級設定–VERBOSE
Dump&Log– 全部選中
重啟手機

3.在android中使用自訂的中文字型

android2.3和以後版本沒有此問題

android2.3之前的版本改字型副檔名即可,檔案放入assets。可以改的副檔名。(為什麼2.3之前的版本不行?網路上一搜一大把!)

“.jpg”, “.jpeg”, “.png”, “.gif”, “.wav”, “.mp2″, “.mp3″, “.ogg”, “.aac”, “.mpg”, “.mpeg”, “.mid”, “.midi”, “.smf”, “.jet”, “.rtttl”, “.imy”, “.xmf”, “.mp4″, “.m4a”, “.m4v”, “.3gp”, “.3gpp”, “.3g2″, “.3gpp2″, “.amr”, “.awb”, “.wma”, “.wmv”

代碼如下:

  Typeface face=Typeface.createFromAsset(getAssets(),"fonts/STXINGKA.jpg");  tv.setTypeface(face);

4. ImageView加邊框

  // 重寫繪圖方法       @Override     protected void onDraw(Canvas canvas) {          super.onDraw(canvas);         // 畫邊框          Rect rect = canvas.getClipBounds();         rect.bottom--;         rect.right--;         Paint paint = new Paint();          paint.setColor(borderColor);          paint.setStyle(Paint.Style.STROKE);          paint.setStrokeWidth(borderWidth);          canvas.drawRect(rect, paint);      }  

5.listView中嵌套viewpager的問題處理

http://blog.csdn.net/zglslyg/article/details/8480460

6.漸層動畫的點擊事件與完美fillAfter

http://www.cnblogs.com/eoiioe/archive/2012/08/29/2662546.html

7.自訂View使用到內部類

類名 public static

<viewandroid:id="@+id/example_view_anim_iamgeview"android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_gravity="center"class="com.zjd.example.app.CustomViewActivity$MyImageView"android:background="@drawable/example_ui_chip0" />

8.String.format()轉義輸出%號

 http://www.cnblogs.com/xytop/articles/1277125.html

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.