ContextMenu Itemの書体を追加/変更するにはどうすればよいですか?
そのようなものに対する組み込みのサポートはないと思います。AlertDialogを実装することで、目標を達成できますが。
新しいAndroidプロジェクトを作成し、関連するフォルダーに次のファイルをコピーして貼り付け、アプリケーションを実行します。次に、TextViewを長押しします。
main.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical"
android:layout_width="fill_parent" android:layout_height="fill_parent">
<TextView android:id="@+id/hello" android:layout_width="fill_parent" android:layout_height="wrap_content"
android:text="@string/hello" />
</LinearLayout>
context_menu_item.xml
<TextView xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent"
android:layout_height="match_parent" android:textStyle="bold">
<!-- specify android:typeface="" -->
</TextView>
BaseActicity.java
public class BaseActicity extends Activity {
protected void registerForCustomContextMenu(View targetView, String title, final String[] items) {
final AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setTitle(title);
ArrayAdapter<String> arrayAdapter = new ArrayAdapter<String>(this, R.layout.context_menu_item, items);
// You can also specify typeface at runtime by overriding the
// getView(int position, View convertView, ViewGroup parent) method of ArrayAdapter
// convertView = super.getView(int position, View convertView, ViewGroup parent)
// TextView textView = (TextView) convertView;
// textView.setTypeface(tf, style)
DialogInterface.OnClickListener onClickListener = new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
onCustomContextMenuItemSelected(items, which);
}
};
builder.setAdapter(arrayAdapter, onClickListener);
OnLongClickListener onLongClickListener = new OnLongClickListener() {
@Override
public boolean onLongClick(View view) {
builder.show();
return true;
}
};
targetView.setOnLongClickListener(onLongClickListener);
}
protected void onCustomContextMenuItemSelected(String[] items, int which) {
}
}
CustomContextMenuActivity.java
public class CustomContextMenuActivity extends BaseActicity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
TextView hello = (TextView) findViewById(R.id.hello);
registerForContextMenu(hello);
final String[] items = {"Red", "Green", "Blue"};
registerForCustomContextMenu(hello, "Pick a color", items);
}
@Override
protected void onCustomContextMenuItemSelected(String[] items, int which) {
Toast.makeText(getApplicationContext(), items[which], Toast.LENGTH_SHORT).show();
}
}
アップデート
実行時にTypoefaceを指定する方法を教えてください。
次のコードを置き換えます
ArrayAdapter<String> arrayAdapter = new ArrayAdapter<String>(this, R.layout.context_menu_item, items);
次のコードを入れることによって
ArrayAdapter<String> arrayAdapter = new ArrayAdapter<String>(this, R.layout.context_menu_item, items) {
@Override
public View getView(int position, View convertView, ViewGroup parent) {
convertView = super.getView(position, convertView, parent);
TextView textView = (TextView) convertView;
Typeface typeface = Typeface.createFromAsset(getContext().getAssets(), "fonts/BENGOTHB_0.TTF");
textView.setTypeface(typeface);
return convertView;
}
}