1

是否有某种图标集可用于Android包含类似于 GitHub Icons的图标。例如,事件 push、pull、fork、merge、comment ...

还是这只能在浏览器中实现?

我希望UTF-8在 a 中使用编码,Textview但它没有正确渲染。根据我的阅读,这是一组专有的UTF字符代码。

4

1 回答 1

1

只需使用 GitHub 图标。这是官方 GitHub Android 应用程序的资产文件夹,包括TTF 字体许可证相当宽松。

假设您的资产文件夹中TextView有 idtext和 TTF 文件,您可以执行以下操作:

    TextView text = (TextView) findViewById(R.id.text);
    text.setText("Clone \uf04c");
    text.setTypeface(Typeface.createFromAsset(getAssets(), "octicons-regular-webfont.ttf"));
于 2013-07-17T21:15:58.247 回答