web-dev-qa-db-ja.com

Androidテキストの切り捨てガイドライン

Androidコントロールでテキストを切り捨てる方法について一連のガイドラインはありますか?フェージングテキスト、省略記号、中央で切り取るなど?

enter image description here

7
Anna Rouben

final int actionBarTitle = getResources()。getSystem()。getIdentifier( "action_bar_title"、 "id"、 "Android");

final TextView title =(TextView)getWindow()。findViewById(actionBarTitle);

title.setEms(10);

title.setText(name);

1
nainesh