Skip to content

Commit

Permalink
feat: 增加 Android Java 内嵌动态 使用方式 (#1189)
Browse files Browse the repository at this point in the history
  • Loading branch information
dango2887 authored Sep 13, 2024
1 parent c167898 commit 5b474b8
Show file tree
Hide file tree
Showing 2 changed files with 251 additions and 11 deletions.
91 changes: 91 additions & 0 deletions cn/docs/sdk/_partials/languages.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,97 @@ namespace TapSDK.Core

<>

```java
import com.taptap.sdk.core.TapTapLanguage;
import com.taptap.sdk.core.TapTapSdk;

TapTapSdk.setPreferredLanguage(TapTapLanguage.AUTO);
```

支持如下语言:

```java
/**
* 自动
*/
AUTO("auto"),

/**
* 简体中文
*/
ZH_HANS("zh_CN"),

/**
* 英语(美国)
*/
EN("en_US"),

/**
* 繁体中文
*/
ZH_HANT("zh_TW"),

/**
* 日文
*/
JA("ja_JP"),

/**
* 韩文
*/
KO("ko_KR"),

/**
* 泰语
*/
TH("th_TH"),

/**
* 印尼语
*/
ID("id_ID"),

/**
* 德语
*/
DE("de"),

/**
* 西班牙语
*/
ES("es_ES"),

/**
* 法语
*/
FR("fr"),

/**
* 葡萄牙语
*/
PT("pt_PT"),

/**
* 俄语
*/
RU("ru"),


/**
* 土耳其语
*/
TR("tr"),

/**
* 越南语
*/
VI("vi_VN");
```

</>

<>

```kotlin
TapTapSdk.setPreferredLanguage(TapTapLanguage.AUTO)
```
Expand Down
Loading

0 comments on commit 5b474b8

Please sign in to comment.