アプリ作って海外移住

コピペプログラマーのメモ

2017-04-01から1ヶ月間の記事一覧

ビューシャドウ

<TextView android:id="@+id/myview" ... android:elevation="2dp" android:background="@drawable/myrect" /> 背景ドローアブルが角が丸い長方形として定義されます。 <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle"> <solid android:color="#42000000" /> </solid></shape></textview>

textview ellipsize されたか判定

Layout l = view.tv2.getLayout();int line = l.getLineCount();int hgh = l.getEllipsisCount(line-1);//ellipsizeされた行数。if(hgh>0){ view.tvbtn.setVisibility(View.VISIBLE);}else{ view.tvbtn.setVisibility(View.GONE);} ellipsizeされた行数が」0…

View.GONE のアニメーション

GONEの時、clearAnimation()しないと、アニメしない。 MainActivity.fab.clearAnimation();MainActivity.fab.setVisibility(View.GONE);回転アニメの例 RotateAnimation rotateAnimation = new RotateAnimation(0.0f, 360.0f, MainActivity.fab.getWidth…