android メモ

画面のwidth取得するほうほう2.3.3

int width;

Display display = getWindowManager().getDefaultDisplay();
if(Build.VERSION.SDK_INT>Build.VERSION_CODES.HONEYCOMB){
	Point size = new Point(); // 4系はこっち
	display.getSize(size);
	width = size.x;
} else {
	width = display.getWidth(); // 2.3.3だとコッチ
}

 

 

TextViewで改行する方法

\n

でOK

 

buttonにhoverをつける

<?xml version="1.0" encoding="utf-8" ?>  
<selector xmlns:android="http://schemas.android.com/apk/res/android">  
    <item android:state_pressed="true">  
        <color android:color="#ff5555ff" />  
    </item>  
    <item android:state_pressed="false">  
        <color android:color="#ff9999ff" />  
    </item>  
</selector>  

http://y-anz-m.blogspot.jp/2010/01/android-button.html