V1.0(1)
18
.gitignore
vendored
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
*.iml
|
||||||
|
.gradle
|
||||||
|
/local.properties
|
||||||
|
/.idea/caches
|
||||||
|
/.idea/libraries
|
||||||
|
/.idea/modules.xml
|
||||||
|
/.idea/workspace.xml
|
||||||
|
/.idea/navEditor.xml
|
||||||
|
/.idea/assetWizardSettings.xml
|
||||||
|
.DS_Store
|
||||||
|
/build
|
||||||
|
/captures
|
||||||
|
.externalNativeBuild
|
||||||
|
.cxx
|
||||||
|
local.properties
|
||||||
|
.idea/
|
||||||
|
.safedk/
|
||||||
|
app/debug/
|
||||||
1
app/.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
/build
|
||||||
BIN
app/WaveBoard
Normal file
84
app/build.gradle.kts
Normal file
@ -0,0 +1,84 @@
|
|||||||
|
|
||||||
|
import java.util.Date
|
||||||
|
import java.text.SimpleDateFormat
|
||||||
|
|
||||||
|
plugins {
|
||||||
|
id("com.android.application")
|
||||||
|
id("org.jetbrains.kotlin.android")
|
||||||
|
kotlin("kapt")
|
||||||
|
id ("kotlin-android")
|
||||||
|
}
|
||||||
|
|
||||||
|
val timestamp = SimpleDateFormat("MM_dd_HH_mm").format(Date())
|
||||||
|
android {
|
||||||
|
namespace = "com.app.wave.keyboard"
|
||||||
|
compileSdk = 36
|
||||||
|
defaultConfig {
|
||||||
|
applicationId = "com.app.wave.keyboard"
|
||||||
|
minSdk = 24
|
||||||
|
targetSdk = 36
|
||||||
|
versionCode = 1
|
||||||
|
versionName = "1.0"
|
||||||
|
setProperty(
|
||||||
|
"archivesBaseName",
|
||||||
|
"WaveBoard_V" + versionName + "(${versionCode})_$timestamp"
|
||||||
|
)
|
||||||
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
||||||
|
}
|
||||||
|
|
||||||
|
buildTypes {
|
||||||
|
release {
|
||||||
|
isMinifyEnabled = true
|
||||||
|
proguardFiles(
|
||||||
|
getDefaultProguardFile("proguard-android-optimize.txt"),
|
||||||
|
"proguard-rules.pro"
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
compileOptions {
|
||||||
|
sourceCompatibility = JavaVersion.VERSION_17
|
||||||
|
targetCompatibility = JavaVersion.VERSION_17
|
||||||
|
}
|
||||||
|
|
||||||
|
kotlinOptions {
|
||||||
|
jvmTarget = "17"
|
||||||
|
}
|
||||||
|
buildFeatures {
|
||||||
|
buildConfig = true
|
||||||
|
viewBinding = true
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
|
||||||
|
implementation("androidx.core:core-ktx:1.15.0")
|
||||||
|
implementation("androidx.appcompat:appcompat:1.7.1")
|
||||||
|
implementation("com.google.android.material:material:1.13.0")
|
||||||
|
implementation("androidx.constraintlayout:constraintlayout:2.2.1")
|
||||||
|
implementation("androidx.activity:activity:1.12.1")
|
||||||
|
testImplementation("junit:junit:4.13.2")
|
||||||
|
androidTestImplementation("androidx.test.ext:junit:1.3.0")
|
||||||
|
androidTestImplementation("androidx.test.espresso:espresso-core:3.7.0")
|
||||||
|
|
||||||
|
|
||||||
|
implementation("com.squareup.okhttp3:okhttp:5.3.2")
|
||||||
|
implementation("com.github.bumptech.glide:glide:5.0.5")
|
||||||
|
implementation ("jp.wasabeef:glide-transformations:4.3.0")
|
||||||
|
//Glide支持webp动图的库
|
||||||
|
implementation("com.github.zjupure:webpdecoder:2.7.4.16.0")
|
||||||
|
implementation("com.github.omicronapps:7-Zip-JBinding-4Android:Release-16.02-2.03")
|
||||||
|
|
||||||
|
val room_version = "2.8.4"
|
||||||
|
implementation ("androidx.room:room-runtime:$room_version")
|
||||||
|
kapt("androidx.room:room-compiler:$room_version")
|
||||||
|
implementation ("androidx.room:room-ktx:$room_version")
|
||||||
|
implementation ("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2")
|
||||||
|
implementation ("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.10.2")
|
||||||
|
|
||||||
|
implementation("com.google.android.material:material:1.8.0")
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
24
app/proguard-rules.pro
vendored
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
|
||||||
|
# 保持 Room 的核心类不被混淆
|
||||||
|
-keep class androidx.room.** { *; }
|
||||||
|
-keep class androidx.sqlite.db.** { *; }
|
||||||
|
|
||||||
|
# 保持 Room 数据库类的基本结构
|
||||||
|
-keep class * extends androidx.room.RoomDatabase { *; }
|
||||||
|
|
||||||
|
# 保持 Room DAO 接口
|
||||||
|
-keep @androidx.room.Dao interface * { *; }
|
||||||
|
-keep @androidx.room.Dao class * { *; }
|
||||||
|
|
||||||
|
# 保持 Room 实体类
|
||||||
|
-keep @androidx.room.Entity class * { *; }
|
||||||
|
|
||||||
|
# 保持 Room 的注解类
|
||||||
|
-keep @androidx.room.Database class * { *; }
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
-keep class com.omicronapplications.** { *; }
|
||||||
|
-keep class net.sf.sevenzipjbinding.** { *; }
|
||||||
|
|
||||||
|
|
||||||
@ -0,0 +1,25 @@
|
|||||||
|
package com.keyboard.skinning.cool
|
||||||
|
|
||||||
|
import androidx.test.platform.app.InstrumentationRegistry
|
||||||
|
import androidx.test.ext.junit.runners.AndroidJUnit4
|
||||||
|
|
||||||
|
import org.junit.Test
|
||||||
|
import org.junit.runner.RunWith
|
||||||
|
|
||||||
|
import org.junit.Assert.*
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Instrumented test, which will execute on an Android device.
|
||||||
|
*
|
||||||
|
* See [testing documentation](http://d.android.com/tools/testing).
|
||||||
|
*/
|
||||||
|
@RunWith(AndroidJUnit4::class)
|
||||||
|
class ExampleInstrumentedTest {
|
||||||
|
@Test
|
||||||
|
fun useAppContext() {
|
||||||
|
// Context of the app under test.
|
||||||
|
val appContext = InstrumentationRegistry.getInstrumentation().targetContext
|
||||||
|
assertEquals("com.ba.ali.apps.keyboard", appContext.packageName)
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
63
app/src/main/AndroidManifest.xml
Normal file
@ -0,0 +1,63 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:tools="http://schemas.android.com/tools">
|
||||||
|
<uses-permission android:name="android.permission.INTERNET" />
|
||||||
|
|
||||||
|
<application
|
||||||
|
android:name=".App"
|
||||||
|
android:allowBackup="true"
|
||||||
|
android:icon="@mipmap/logo"
|
||||||
|
android:label="@string/app_name"
|
||||||
|
android:roundIcon="@mipmap/logo"
|
||||||
|
android:supportsRtl="true"
|
||||||
|
android:theme="@style/MyKeyBoard"
|
||||||
|
tools:targetApi="31">
|
||||||
|
<activity
|
||||||
|
android:name=".ui.SettingsActivity"
|
||||||
|
android:screenOrientation="portrait"
|
||||||
|
android:theme="@style/Theme.AppCompat.Dialog"
|
||||||
|
android:windowSoftInputMode="adjustResize"
|
||||||
|
android:exported="false" />
|
||||||
|
<activity
|
||||||
|
android:name=".ui.MoreActivity"
|
||||||
|
android:exported="false" />
|
||||||
|
<activity
|
||||||
|
android:name=".ui.SplashActivity"
|
||||||
|
android:exported="true"
|
||||||
|
android:screenOrientation="portrait">
|
||||||
|
<intent-filter>
|
||||||
|
<action android:name="android.intent.action.MAIN" />
|
||||||
|
|
||||||
|
<category android:name="android.intent.category.LAUNCHER" />
|
||||||
|
</intent-filter>
|
||||||
|
</activity>
|
||||||
|
<activity
|
||||||
|
android:name=".ui.KeyboardPreviewActivity"
|
||||||
|
android:exported="false"
|
||||||
|
android:screenOrientation="portrait" />
|
||||||
|
<activity
|
||||||
|
android:name=".ui.ApplyActivity"
|
||||||
|
android:exported="false"
|
||||||
|
android:screenOrientation="portrait"
|
||||||
|
android:windowSoftInputMode="stateAlwaysVisible|adjustResize|adjustPan" />
|
||||||
|
<activity
|
||||||
|
android:name=".ui.MainActivity"
|
||||||
|
android:exported="true"
|
||||||
|
android:launchMode="singleTask"
|
||||||
|
android:screenOrientation="portrait" />
|
||||||
|
|
||||||
|
<service
|
||||||
|
android:name=".kbhelper.InputService"
|
||||||
|
android:exported="true"
|
||||||
|
android:permission="android.permission.BIND_INPUT_METHOD">
|
||||||
|
<intent-filter>
|
||||||
|
<action android:name="android.view.InputMethod" />
|
||||||
|
</intent-filter>
|
||||||
|
|
||||||
|
<meta-data
|
||||||
|
android:name="android.view.im"
|
||||||
|
android:resource="@xml/keyborad_xml" />
|
||||||
|
</service>
|
||||||
|
</application>
|
||||||
|
|
||||||
|
</manifest>
|
||||||
21607
app/src/main/assets/keyboard_res.json
Normal file
119
app/src/main/java/com/app/wave/keyboard/App.kt
Normal file
@ -0,0 +1,119 @@
|
|||||||
|
package com.app.wave.keyboard
|
||||||
|
|
||||||
|
import android.app.Application
|
||||||
|
import android.graphics.Typeface
|
||||||
|
import com.app.wave.keyboard.bean.DetailsBean
|
||||||
|
import com.app.wave.keyboard.bean.WrapperBean
|
||||||
|
//import com.pretty.keyboard.theme.keyboard.helper.ObjectBox
|
||||||
|
import org.json.JSONArray
|
||||||
|
import java.io.BufferedReader
|
||||||
|
import java.io.IOException
|
||||||
|
import java.io.InputStream
|
||||||
|
import java.io.InputStreamReader
|
||||||
|
import java.io.StringWriter
|
||||||
|
|
||||||
|
class App : Application() {
|
||||||
|
companion object {
|
||||||
|
lateinit var appInstance: App
|
||||||
|
|
||||||
|
lateinit var list: MutableList<WrapperBean>
|
||||||
|
|
||||||
|
const val TAG = "-----------------"
|
||||||
|
var defaultFont: Typeface? = null
|
||||||
|
const val DB_VERSION = 1
|
||||||
|
const val DB_NAME = "db_name"
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onCreate() {
|
||||||
|
super.onCreate()
|
||||||
|
appInstance = this
|
||||||
|
dealFile()
|
||||||
|
}
|
||||||
|
private fun dealFile() {
|
||||||
|
val openFile = appInstance.assets.open("keyboard_res.json")
|
||||||
|
val jsonString = getJsonString(openFile)
|
||||||
|
if (jsonString != null) {
|
||||||
|
resolveJsonString(jsonString)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
private fun resolveJsonString(string: String) {
|
||||||
|
val jsonData = JSONArray(string)
|
||||||
|
var dataList: MutableList<WrapperBean> = mutableListOf()
|
||||||
|
for (i in 0 until jsonData.length()) {
|
||||||
|
jsonData.getJSONObject(i).run {
|
||||||
|
val pName = getString("parent_name")
|
||||||
|
val listArray = getJSONArray("keyboard_list")
|
||||||
|
var detailsBeanList: MutableList<DetailsBean> = mutableListOf()
|
||||||
|
for (listIndex in 0 until listArray.length()) {
|
||||||
|
listArray.getJSONObject(listIndex).also {
|
||||||
|
val title = it.getString("title")
|
||||||
|
val thUrl = it.getString("thumbUrl")
|
||||||
|
val thGif = it.getString("thumbUrlGif")
|
||||||
|
var zipPath = ""
|
||||||
|
var imgPath = ""
|
||||||
|
var imgGif = ""
|
||||||
|
var imgPreviewGif = ""
|
||||||
|
if (it.has("detail")) {
|
||||||
|
val contentObject =
|
||||||
|
it.getJSONObject("detail").getJSONObject("themeContent")
|
||||||
|
zipPath = contentObject.getString("androidRawZipUrl")
|
||||||
|
imgPath = contentObject.getString("img")
|
||||||
|
imgGif = contentObject.getString("imgGif")
|
||||||
|
imgPreviewGif = contentObject.getString("imgPreviewGif")
|
||||||
|
} else {
|
||||||
|
|
||||||
|
}
|
||||||
|
detailsBeanList.add(
|
||||||
|
DetailsBean().apply {
|
||||||
|
setImgPath(imgPath)
|
||||||
|
setZipPath(zipPath)
|
||||||
|
setTitleName(title)
|
||||||
|
setImgGif(imgGif)
|
||||||
|
thumbUrl = thUrl
|
||||||
|
thumbGif = thGif
|
||||||
|
})
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
val shuffled = detailsBeanList.shuffled()
|
||||||
|
val dataWrapperBean = WrapperBean()
|
||||||
|
.apply {
|
||||||
|
parentName = pName
|
||||||
|
keyboardList = shuffled
|
||||||
|
}
|
||||||
|
dataList.add(dataWrapperBean)
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
updateDataList(dataList)
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun updateDataList(mainList: MutableList<WrapperBean>) {
|
||||||
|
list = mainList
|
||||||
|
|
||||||
|
}
|
||||||
|
private fun getJsonString(fileInputStream: InputStream): String? {
|
||||||
|
return try {
|
||||||
|
// FileInputStream fileInputStream = new FileInputStream(path);
|
||||||
|
val charArray = CharArray(fileInputStream.available())
|
||||||
|
var readCount = 0
|
||||||
|
val streamReader = InputStreamReader(fileInputStream)
|
||||||
|
val bufferedReader = BufferedReader(streamReader)
|
||||||
|
val stringWriter = StringWriter()
|
||||||
|
while (bufferedReader.read(charArray).also { readCount = it } != -1) {
|
||||||
|
stringWriter.write(charArray, 0, readCount)
|
||||||
|
}
|
||||||
|
stringWriter.toString()
|
||||||
|
} catch (e: IOException) {
|
||||||
|
""
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
@ -0,0 +1,262 @@
|
|||||||
|
package com.app.wave.keyboard.adapter;
|
||||||
|
|
||||||
|
import android.content.Context;
|
||||||
|
import android.graphics.Rect;
|
||||||
|
import android.view.LayoutInflater;
|
||||||
|
import android.view.View;
|
||||||
|
import android.view.ViewGroup;
|
||||||
|
|
||||||
|
import androidx.annotation.NonNull;
|
||||||
|
import androidx.recyclerview.widget.LinearLayoutManager;
|
||||||
|
import androidx.recyclerview.widget.RecyclerView;
|
||||||
|
|
||||||
|
import com.app.wave.keyboard.bean.WrapperBean;
|
||||||
|
import com.app.wave.keyboard.bean.DetailsBean;
|
||||||
|
import com.app.wave.keyboard.callback.MoreCallback;
|
||||||
|
import com.app.wave.keyboard.databinding.AdapterCategoryBinding;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
public class CategoryAdapter extends RecyclerView.Adapter<CategoryAdapter.MainViewHolder> {
|
||||||
|
private Context mContext;
|
||||||
|
private List<WrapperBean> mList = new ArrayList<>();
|
||||||
|
|
||||||
|
private MoreCallback mCallBack;
|
||||||
|
|
||||||
|
public CategoryAdapter(Context context, List<WrapperBean> list) {
|
||||||
|
mContext = context;
|
||||||
|
this.mList = list;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setClickAction(MoreCallback callback) {
|
||||||
|
mCallBack = callback;
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
@Override
|
||||||
|
public MainViewHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) {
|
||||||
|
AdapterCategoryBinding inflate = AdapterCategoryBinding.inflate(LayoutInflater.from(parent.getContext()));
|
||||||
|
return new MainViewHolder(inflate);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onBindViewHolder(@NonNull MainViewHolder holder, int position) {
|
||||||
|
WrapperBean wrapperBean = mList.get(position);
|
||||||
|
String parentName = wrapperBean.getParentName();
|
||||||
|
holder.binding.className.setText(parentName);
|
||||||
|
|
||||||
|
List<DetailsBean> keyboardList = wrapperBean.getKeyboardList();
|
||||||
|
List<DetailsBean> displayList;
|
||||||
|
if (keyboardList.size() > 7) {
|
||||||
|
displayList = keyboardList.subList(0, 7);
|
||||||
|
} else {
|
||||||
|
displayList = keyboardList;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 创建水平滑动的适配器
|
||||||
|
CategoryItemAdapter categoryItemAdapter = new CategoryItemAdapter(mContext, displayList);
|
||||||
|
categoryItemAdapter.setFixedWidthMode(150, 106);
|
||||||
|
|
||||||
|
// 设置水平布局管理器
|
||||||
|
LinearLayoutManager layoutManager = new LinearLayoutManager(mContext, LinearLayoutManager.HORIZONTAL, false);
|
||||||
|
holder.binding.childRecycler.setLayoutManager(layoutManager);
|
||||||
|
holder.binding.childRecycler.setAdapter(categoryItemAdapter);
|
||||||
|
|
||||||
|
// 移除旧的装饰器
|
||||||
|
if (holder.binding.childRecycler.getItemDecorationCount() > 0) {
|
||||||
|
holder.binding.childRecycler.removeItemDecorationAt(0);
|
||||||
|
}
|
||||||
|
|
||||||
|
HorizontalItemDecoration decoration = new HorizontalItemDecoration(16, 8, 16);
|
||||||
|
holder.binding.childRecycler.addItemDecoration(decoration);
|
||||||
|
|
||||||
|
// 设置查看更多按钮点击事件
|
||||||
|
holder.binding.tvAll.setOnClickListener(new View.OnClickListener() {
|
||||||
|
@Override
|
||||||
|
public void onClick(View v) {
|
||||||
|
if (mCallBack != null) {
|
||||||
|
mCallBack.OnClickSeeAll(parentName);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// 监听滚动,显示/隐藏右箭头提示
|
||||||
|
holder.binding.childRecycler.addOnScrollListener(new RecyclerView.OnScrollListener() {
|
||||||
|
@Override
|
||||||
|
public void onScrolled(@NonNull RecyclerView recyclerView, int dx, int dy) {
|
||||||
|
super.onScrolled(recyclerView, dx, dy);
|
||||||
|
boolean canScrollRight = recyclerView.canScrollHorizontally(1);
|
||||||
|
// 检查 ImageView 是否存在
|
||||||
|
if (holder.binding.ivScrollHint != null) {
|
||||||
|
holder.binding.ivScrollHint.setVisibility(canScrollRight ? View.VISIBLE : View.GONE);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// 初始检查是否可以滚动
|
||||||
|
if (holder.binding.ivScrollHint != null) {
|
||||||
|
holder.binding.childRecycler.post(new Runnable() {
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
|
boolean canScrollRight = holder.binding.childRecycler.canScrollHorizontally(1);
|
||||||
|
holder.binding.ivScrollHint.setVisibility(canScrollRight ? View.VISIBLE : View.GONE);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// ==================== 新增:箭头点击事件 ====================
|
||||||
|
if (holder.binding.ivScrollHint != null) {
|
||||||
|
holder.binding.ivScrollHint.setOnClickListener(new View.OnClickListener() {
|
||||||
|
@Override
|
||||||
|
public void onClick(View v) {
|
||||||
|
smoothScrollRight(holder.binding.childRecycler);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int getItemCount() {
|
||||||
|
return mList.size();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static class MainViewHolder extends RecyclerView.ViewHolder {
|
||||||
|
private AdapterCategoryBinding binding;
|
||||||
|
public MainViewHolder(@NonNull AdapterCategoryBinding itemView) {
|
||||||
|
super(itemView.getRoot());
|
||||||
|
binding = itemView;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 水平间距装饰器 - 现在已实现完整的间距功能
|
||||||
|
*/
|
||||||
|
public static class HorizontalItemDecoration extends RecyclerView.ItemDecoration {
|
||||||
|
private final int itemSpacing; // item之间的间距
|
||||||
|
private final int firstItemSpacing; // 第一个item的左边距
|
||||||
|
private final int lastItemSpacing; // 最后一个item的右边距
|
||||||
|
|
||||||
|
public HorizontalItemDecoration(int itemSpacing, int firstItemSpacing, int lastItemSpacing) {
|
||||||
|
this.itemSpacing = itemSpacing;
|
||||||
|
this.firstItemSpacing = firstItemSpacing;
|
||||||
|
this.lastItemSpacing = lastItemSpacing;
|
||||||
|
}
|
||||||
|
|
||||||
|
public HorizontalItemDecoration(int itemSpacing) {
|
||||||
|
this(itemSpacing, itemSpacing, itemSpacing);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void getItemOffsets(@NonNull Rect outRect, @NonNull View view,
|
||||||
|
@NonNull RecyclerView parent, @NonNull RecyclerView.State state) {
|
||||||
|
super.getItemOffsets(outRect, view, parent, state);
|
||||||
|
|
||||||
|
int position = parent.getChildAdapterPosition(view);
|
||||||
|
if (position == RecyclerView.NO_POSITION) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
int itemCount = state.getItemCount();
|
||||||
|
|
||||||
|
// 所有 item 都设置上下的间距为0
|
||||||
|
outRect.top = 0;
|
||||||
|
outRect.bottom = 0;
|
||||||
|
|
||||||
|
// 第一个 item:左边距为 firstItemSpacing,右边距为 itemSpacing/2
|
||||||
|
if (position == 0) {
|
||||||
|
outRect.left = firstItemSpacing;
|
||||||
|
outRect.right = itemSpacing / 2;
|
||||||
|
}
|
||||||
|
// 最后一个 item:左边距为 itemSpacing/2,右边距为 lastItemSpacing
|
||||||
|
else if (position == itemCount - 1) {
|
||||||
|
outRect.left = itemSpacing / 2;
|
||||||
|
outRect.right = lastItemSpacing;
|
||||||
|
}
|
||||||
|
// 中间的 item:左右边距各为 itemSpacing/2
|
||||||
|
else {
|
||||||
|
outRect.left = itemSpacing / 2;
|
||||||
|
outRect.right = itemSpacing / 2;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 平滑滚动到右侧
|
||||||
|
*/
|
||||||
|
private void smoothScrollRight(RecyclerView recyclerView) {
|
||||||
|
if (recyclerView == null || recyclerView.getLayoutManager() == null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
LinearLayoutManager layoutManager = (LinearLayoutManager) recyclerView.getLayoutManager();
|
||||||
|
|
||||||
|
// 获取当前第一个可见的item位置
|
||||||
|
int firstVisibleItemPosition = layoutManager.findFirstVisibleItemPosition();
|
||||||
|
if (firstVisibleItemPosition == RecyclerView.NO_POSITION) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 获取当前第一个可见item的View
|
||||||
|
View firstVisibleView = layoutManager.findViewByPosition(firstVisibleItemPosition);
|
||||||
|
if (firstVisibleView == null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 计算滚动的距离(向右移动一个item的宽度 + 间距)
|
||||||
|
int itemWidth = firstVisibleView.getWidth();
|
||||||
|
|
||||||
|
// 获取item装饰间距(如果有)
|
||||||
|
int itemSpacing = 16; // 这是你在HorizontalItemDecoration中设置的
|
||||||
|
|
||||||
|
// 滚动距离 = item宽度 + 间距(这样每次点击可以看到下一个item)
|
||||||
|
int scrollDistance = itemWidth + itemSpacing;
|
||||||
|
|
||||||
|
// 平滑滚动
|
||||||
|
recyclerView.smoothScrollBy(scrollDistance, 0);
|
||||||
|
|
||||||
|
// 或者使用这种方式滚动到下一个item
|
||||||
|
// if (firstVisibleItemPosition + 1 < recyclerView.getAdapter().getItemCount()) {
|
||||||
|
// recyclerView.smoothScrollToPosition(firstVisibleItemPosition + 1);
|
||||||
|
// }
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 另一种实现方式:直接滚动到下一个位置
|
||||||
|
*/
|
||||||
|
private void scrollToNextItem(RecyclerView recyclerView) {
|
||||||
|
if (recyclerView == null || recyclerView.getLayoutManager() == null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
LinearLayoutManager layoutManager = (LinearLayoutManager) recyclerView.getLayoutManager();
|
||||||
|
|
||||||
|
// 获取当前第一个完全可见的item位置
|
||||||
|
int firstCompletelyVisibleItemPosition = layoutManager.findFirstCompletelyVisibleItemPosition();
|
||||||
|
|
||||||
|
// 获取当前最后一个完全可见的item位置
|
||||||
|
int lastCompletelyVisibleItemPosition = layoutManager.findLastCompletelyVisibleItemPosition();
|
||||||
|
|
||||||
|
if (firstCompletelyVisibleItemPosition == RecyclerView.NO_POSITION) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
int nextPosition;
|
||||||
|
|
||||||
|
// 如果最后一个完全可见的item不是最后一个item,则滚动让下一个item完全可见
|
||||||
|
if (lastCompletelyVisibleItemPosition < recyclerView.getAdapter().getItemCount() - 1) {
|
||||||
|
nextPosition = lastCompletelyVisibleItemPosition + 1;
|
||||||
|
}
|
||||||
|
// 否则,滚动到下一个item(可能只显示一部分)
|
||||||
|
else if (firstCompletelyVisibleItemPosition < recyclerView.getAdapter().getItemCount() - 1) {
|
||||||
|
nextPosition = firstCompletelyVisibleItemPosition + 1;
|
||||||
|
}
|
||||||
|
// 如果已经是最后一个,就不滚动
|
||||||
|
else {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 平滑滚动到指定位置,让目标item位于起始位置
|
||||||
|
layoutManager.scrollToPositionWithOffset(nextPosition, 8); // 8是第一个item的左边距
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,150 @@
|
|||||||
|
package com.app.wave.keyboard.adapter;
|
||||||
|
|
||||||
|
import android.content.Context;
|
||||||
|
import android.content.Intent;
|
||||||
|
import android.view.LayoutInflater;
|
||||||
|
import android.view.View;
|
||||||
|
import android.view.ViewGroup;
|
||||||
|
|
||||||
|
import androidx.annotation.NonNull;
|
||||||
|
import androidx.recyclerview.widget.RecyclerView;
|
||||||
|
|
||||||
|
import com.app.wave.keyboard.R;
|
||||||
|
import com.app.wave.keyboard.bean.DetailsBean;
|
||||||
|
import com.app.wave.keyboard.databinding.AdapterCategoryItemBinding;
|
||||||
|
import com.app.wave.keyboard.ui.KeyboardPreviewActivity;
|
||||||
|
import com.app.wave.keyboard.utils.Comutils;
|
||||||
|
import com.bumptech.glide.Glide;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
public class CategoryItemAdapter extends RecyclerView.Adapter<CategoryItemAdapter.ChildViewHolder> {
|
||||||
|
|
||||||
|
private Context mContext;
|
||||||
|
private List<DetailsBean> mList = new ArrayList<>();
|
||||||
|
private boolean isFixedWidth = true; // 默认为固定宽度模式
|
||||||
|
private int fixedWidthDp = 150; // 保存dp值而不是px值
|
||||||
|
private int fixedHeightDp = 106; // 保存dp值而不是px值
|
||||||
|
private int spanCount = 3; // 用于自适应宽度模式
|
||||||
|
|
||||||
|
public CategoryItemAdapter(Context context, List<DetailsBean> list) {
|
||||||
|
mContext = context;
|
||||||
|
this.mList = list;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 设置固定宽度模式(用于HomepageFragment)
|
||||||
|
public void setFixedWidthMode(int widthDp, int heightDp) {
|
||||||
|
this.isFixedWidth = true;
|
||||||
|
this.fixedWidthDp = widthDp;
|
||||||
|
this.fixedHeightDp = heightDp;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 设置自适应宽度模式(用于MoreActivity)
|
||||||
|
public void setAdaptiveWidthMode(int spanCount) {
|
||||||
|
this.isFixedWidth = false;
|
||||||
|
this.spanCount = spanCount;
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
@Override
|
||||||
|
public ChildViewHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) {
|
||||||
|
AdapterCategoryItemBinding inflate = AdapterCategoryItemBinding.inflate(LayoutInflater.from(parent.getContext()));
|
||||||
|
|
||||||
|
View itemView = inflate.getRoot();
|
||||||
|
|
||||||
|
if (itemView.getLayoutParams() == null) {
|
||||||
|
itemView.setLayoutParams(new ViewGroup.LayoutParams(
|
||||||
|
ViewGroup.LayoutParams.WRAP_CONTENT,
|
||||||
|
ViewGroup.LayoutParams.WRAP_CONTENT
|
||||||
|
));
|
||||||
|
}
|
||||||
|
|
||||||
|
ViewGroup.LayoutParams layoutParams = itemView.getLayoutParams();
|
||||||
|
|
||||||
|
if (isFixedWidth) {
|
||||||
|
// 固定宽度模式
|
||||||
|
layoutParams.width = dpToPx(fixedWidthDp);
|
||||||
|
layoutParams.height = dpToPx(fixedHeightDp);
|
||||||
|
} else {
|
||||||
|
// 自适应宽度模式
|
||||||
|
int screenWidth = mContext.getResources().getDisplayMetrics().widthPixels;
|
||||||
|
int horizontalPadding = dpToPx(20);
|
||||||
|
int itemSpacing = dpToPx(8);
|
||||||
|
|
||||||
|
int availableWidth = screenWidth - horizontalPadding - (spanCount - 1) * itemSpacing;
|
||||||
|
int columnWidth = availableWidth / spanCount;
|
||||||
|
|
||||||
|
layoutParams.width = columnWidth;
|
||||||
|
layoutParams.height = (int) (columnWidth * 0.7); // 保持宽高比
|
||||||
|
}
|
||||||
|
|
||||||
|
itemView.setLayoutParams(layoutParams);
|
||||||
|
|
||||||
|
return new ChildViewHolder(inflate);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onBindViewHolder(@NonNull ChildViewHolder holder, int position) {
|
||||||
|
DetailsBean detailsBean = mList.get(position);
|
||||||
|
|
||||||
|
String thumbGif = detailsBean.getThumbGif();
|
||||||
|
String thumb = detailsBean.getThumbUrl();
|
||||||
|
|
||||||
|
// 加载图片
|
||||||
|
if (thumbGif != null && !thumbGif.isEmpty()) {
|
||||||
|
Comutils.INSTANCE.loadWepJif(mContext, thumbGif, holder.binding.imageView);
|
||||||
|
} else {
|
||||||
|
Glide.with(mContext)
|
||||||
|
.load(thumb)
|
||||||
|
.error(R.drawable.placeholder)
|
||||||
|
.placeholder(R.drawable.placeholder)
|
||||||
|
.centerCrop()
|
||||||
|
.into(holder.binding.imageView);
|
||||||
|
}
|
||||||
|
|
||||||
|
// 点击事件
|
||||||
|
holder.binding.fragme.setOnClickListener(new View.OnClickListener() {
|
||||||
|
@Override
|
||||||
|
public void onClick(View v) {
|
||||||
|
Intent intentApply = new Intent(mContext, KeyboardPreviewActivity.class);
|
||||||
|
intentApply.putExtra(KeyboardPreviewActivity.SOURCE_KEY, detailsBean);
|
||||||
|
intentApply.putExtra(KeyboardPreviewActivity.DISPLAY_URL_KEY, detailsBean.getImgPath());
|
||||||
|
intentApply.putExtra(KeyboardPreviewActivity.ZIP_URL_KEY, detailsBean.getZipPath());
|
||||||
|
intentApply.putExtra(KeyboardPreviewActivity.NAME_KEY, detailsBean.getTitleName());
|
||||||
|
intentApply.putExtra(KeyboardPreviewActivity.GIF_KEY, detailsBean.getImgGif());
|
||||||
|
|
||||||
|
String intent_thumb;
|
||||||
|
if (thumbGif != null && !thumbGif.isEmpty()) {
|
||||||
|
intent_thumb = thumbGif;
|
||||||
|
} else {
|
||||||
|
intent_thumb = thumb;
|
||||||
|
}
|
||||||
|
intentApply.putExtra(KeyboardPreviewActivity.THUMB_KEY, intent_thumb);
|
||||||
|
mContext.startActivity(intentApply);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int getItemCount() {
|
||||||
|
return mList.size();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static class ChildViewHolder extends RecyclerView.ViewHolder {
|
||||||
|
private AdapterCategoryItemBinding binding;
|
||||||
|
|
||||||
|
public ChildViewHolder(@NonNull AdapterCategoryItemBinding itemView) {
|
||||||
|
super(itemView.getRoot());
|
||||||
|
binding = itemView;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private int dpToPx(int dp) {
|
||||||
|
if (mContext == null || mContext.getResources() == null) {
|
||||||
|
return dp; // 返回原始值作为fallback
|
||||||
|
}
|
||||||
|
float density = mContext.getResources().getDisplayMetrics().density;
|
||||||
|
return Math.round(dp * density);
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,127 @@
|
|||||||
|
package com.app.wave.keyboard.adapter;
|
||||||
|
|
||||||
|
|
||||||
|
import android.content.Context;
|
||||||
|
import android.content.Intent;
|
||||||
|
import android.view.LayoutInflater;
|
||||||
|
import android.view.View;
|
||||||
|
import android.view.ViewGroup;
|
||||||
|
import android.widget.FrameLayout;
|
||||||
|
import android.widget.ImageView;
|
||||||
|
|
||||||
|
import androidx.annotation.NonNull;
|
||||||
|
import androidx.cardview.widget.CardView;
|
||||||
|
import androidx.recyclerview.widget.RecyclerView;
|
||||||
|
|
||||||
|
import com.app.wave.keyboard.bean.DetailsBean;
|
||||||
|
import com.bumptech.glide.Glide;
|
||||||
|
import com.app.wave.keyboard.R;
|
||||||
|
import com.app.wave.keyboard.utils.Comutils;
|
||||||
|
import com.app.wave.keyboard.callback.RemoveCallback;
|
||||||
|
import com.app.wave.keyboard.ui.KeyboardPreviewActivity;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
public class CollectionAdapter extends RecyclerView.Adapter<CollectionAdapter.ForYouViewHolder> {
|
||||||
|
|
||||||
|
private Context mContext;
|
||||||
|
private List<DetailsBean> mList = new ArrayList<>();
|
||||||
|
|
||||||
|
private RemoveCallback mCallBack;
|
||||||
|
|
||||||
|
public CollectionAdapter(Context context) {
|
||||||
|
mContext = context;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setForYouList(List<DetailsBean> list) {
|
||||||
|
this.mList = list;
|
||||||
|
notifyDataSetChanged();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public void setRemoveLike(RemoveCallback callback) {
|
||||||
|
mCallBack = callback;
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
@Override
|
||||||
|
public ForYouViewHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) {
|
||||||
|
|
||||||
|
View view = LayoutInflater.from(mContext).inflate(R.layout.adapter_collection, parent, false);
|
||||||
|
return new ForYouViewHolder(view);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onBindViewHolder(@NonNull ForYouViewHolder holder, int position) {
|
||||||
|
DetailsBean detailsBean = mList.get(position);
|
||||||
|
String thumbGif = detailsBean.getThumbGif();
|
||||||
|
String thumb = detailsBean.getThumbUrl();
|
||||||
|
if (!thumbGif.isEmpty()) {
|
||||||
|
Comutils.INSTANCE.loadWepJif(mContext, thumbGif, holder.itemImg);
|
||||||
|
} else {
|
||||||
|
Glide.with(mContext)
|
||||||
|
.load(thumb).error(R.drawable.placeholder)
|
||||||
|
.placeholder(R.drawable.placeholder).into(holder.itemImg);
|
||||||
|
}
|
||||||
|
holder.itemFavorite.setSelected(true);
|
||||||
|
holder.itemFavorite.setOnClickListener(new View.OnClickListener() {
|
||||||
|
@Override
|
||||||
|
public void onClick(View v) {
|
||||||
|
holder.itemFavorite.setSelected(false);
|
||||||
|
int adapterPosition = holder.getAdapterPosition();
|
||||||
|
if (adapterPosition != RecyclerView.NO_POSITION) {
|
||||||
|
notifyItemRemoved(adapterPosition);
|
||||||
|
if (mCallBack != null) {
|
||||||
|
mCallBack.OnRemoveLike(detailsBean);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
holder.cardView.setOnClickListener(new View.OnClickListener() {
|
||||||
|
@Override
|
||||||
|
public void onClick(View v) {
|
||||||
|
Intent intentApply = new Intent(mContext, KeyboardPreviewActivity.class);
|
||||||
|
intentApply.putExtra(KeyboardPreviewActivity.SOURCE_KEY, detailsBean);
|
||||||
|
intentApply.putExtra(KeyboardPreviewActivity.DISPLAY_URL_KEY, detailsBean.getImgPath());
|
||||||
|
intentApply.putExtra(KeyboardPreviewActivity.ZIP_URL_KEY, detailsBean.getZipPath());
|
||||||
|
intentApply.putExtra(KeyboardPreviewActivity.NAME_KEY, detailsBean.getTitleName());
|
||||||
|
intentApply.putExtra(KeyboardPreviewActivity.GIF_KEY, detailsBean.getImgGif());
|
||||||
|
String intent_thumb;
|
||||||
|
if (!thumbGif.isEmpty()) {
|
||||||
|
intent_thumb = thumbGif;
|
||||||
|
} else {
|
||||||
|
intent_thumb = thumb;
|
||||||
|
}
|
||||||
|
intentApply.putExtra(KeyboardPreviewActivity.THUMB_KEY, intent_thumb);
|
||||||
|
mContext.startActivity(intentApply);
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int getItemCount() {
|
||||||
|
return mList.size();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static class ForYouViewHolder extends RecyclerView.ViewHolder {
|
||||||
|
|
||||||
|
private CardView cardView;
|
||||||
|
private FrameLayout layoutFavorite;
|
||||||
|
private ImageView itemImg, itemFavorite;
|
||||||
|
|
||||||
|
public ForYouViewHolder(@NonNull View itemView) {
|
||||||
|
super(itemView);
|
||||||
|
cardView = itemView.findViewById(R.id.card_view);
|
||||||
|
itemImg = itemView.findViewById(R.id.im);
|
||||||
|
itemFavorite = itemView.findViewById(R.id.im_favorite);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@ -0,0 +1,127 @@
|
|||||||
|
package com.app.wave.keyboard.adapter;
|
||||||
|
|
||||||
|
|
||||||
|
import android.content.Context;
|
||||||
|
import android.content.Intent;
|
||||||
|
import android.view.LayoutInflater;
|
||||||
|
import android.view.View;
|
||||||
|
import android.view.ViewGroup;
|
||||||
|
import android.widget.ImageView;
|
||||||
|
|
||||||
|
import androidx.annotation.NonNull;
|
||||||
|
import androidx.cardview.widget.CardView;
|
||||||
|
import androidx.recyclerview.widget.RecyclerView;
|
||||||
|
|
||||||
|
import com.app.wave.keyboard.R;
|
||||||
|
import com.app.wave.keyboard.bean.DetailsBean;
|
||||||
|
import com.app.wave.keyboard.callback.OIClickCallback;
|
||||||
|
import com.app.wave.keyboard.ui.KeyboardPreviewActivity;
|
||||||
|
import com.bumptech.glide.Glide;
|
||||||
|
import com.app.wave.keyboard.utils.Comutils;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
public class RecommendAdapter extends RecyclerView.Adapter<RecommendAdapter.ForYouViewHolder> {
|
||||||
|
|
||||||
|
private Context mContext;
|
||||||
|
private List<DetailsBean> mList = new ArrayList<>();
|
||||||
|
|
||||||
|
private OIClickCallback mCallBack;
|
||||||
|
|
||||||
|
public RecommendAdapter(Context context) {
|
||||||
|
mContext = context;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setForYouList(List<DetailsBean> list) {
|
||||||
|
this.mList = list;
|
||||||
|
notifyDataSetChanged();
|
||||||
|
}
|
||||||
|
public void setClickAction(OIClickCallback callback) {
|
||||||
|
mCallBack = callback;
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
@Override
|
||||||
|
public ForYouViewHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) {
|
||||||
|
|
||||||
|
View view = LayoutInflater.from(mContext).inflate(R.layout.adapter_recommend, parent, false);
|
||||||
|
return new ForYouViewHolder(view);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onBindViewHolder(@NonNull ForYouViewHolder holder, int position) {
|
||||||
|
DetailsBean detailsBean = mList.get(position);
|
||||||
|
String thumbGif = detailsBean.getThumbGif();
|
||||||
|
String thumb = detailsBean.getThumbUrl();
|
||||||
|
if (!thumbGif.isEmpty()) {
|
||||||
|
Comutils.INSTANCE.loadWepJif(mContext, thumbGif, holder.itemImg);
|
||||||
|
} else {
|
||||||
|
Glide.with(mContext).load(thumb).into(holder.itemImg);
|
||||||
|
}
|
||||||
|
|
||||||
|
holder.cardView.setOnClickListener(new View.OnClickListener() {
|
||||||
|
@Override
|
||||||
|
public void onClick(View v) {
|
||||||
|
Intent intentApply = new Intent(mContext, KeyboardPreviewActivity.class);
|
||||||
|
intentApply.putExtra(KeyboardPreviewActivity.SOURCE_KEY, detailsBean);
|
||||||
|
intentApply.putExtra(KeyboardPreviewActivity.DISPLAY_URL_KEY, detailsBean.getImgPath());
|
||||||
|
intentApply.putExtra(KeyboardPreviewActivity.ZIP_URL_KEY, detailsBean.getZipPath());
|
||||||
|
intentApply.putExtra(KeyboardPreviewActivity.NAME_KEY, detailsBean.getTitleName());
|
||||||
|
intentApply.putExtra(KeyboardPreviewActivity.GIF_KEY, detailsBean.getImgGif());
|
||||||
|
String intent_thumb;
|
||||||
|
if (!thumbGif.isEmpty()) {
|
||||||
|
intent_thumb = thumbGif;
|
||||||
|
} else {
|
||||||
|
intent_thumb = thumb;
|
||||||
|
}
|
||||||
|
intentApply.putExtra(KeyboardPreviewActivity.THUMB_KEY, intent_thumb);
|
||||||
|
mContext.startActivity(intentApply);
|
||||||
|
if (mCallBack != null) {
|
||||||
|
mCallBack.OnItemClickListener();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int getItemCount() {
|
||||||
|
return mList.size();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static class ForYouViewHolder extends RecyclerView.ViewHolder {
|
||||||
|
|
||||||
|
private CardView cardView;
|
||||||
|
private ImageView itemImg;
|
||||||
|
|
||||||
|
public ForYouViewHolder(@NonNull View itemView) {
|
||||||
|
super(itemView);
|
||||||
|
cardView = itemView.findViewById(R.id.card_view);
|
||||||
|
itemImg = itemView.findViewById(R.id.imPreview);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
// private void loadWepJif(String webpGifUrl,ImageView view){
|
||||||
|
// Glide.with(mContext).load(webpGifUrl).addListener(new RequestListener<Drawable>() {
|
||||||
|
// @Override
|
||||||
|
// public boolean onLoadFailed(@Nullable GlideException e, @Nullable Object model, @NonNull Target<Drawable> target, boolean isFirstResource) {
|
||||||
|
// return false;
|
||||||
|
// }
|
||||||
|
//
|
||||||
|
// @Override
|
||||||
|
// public boolean onResourceReady(@NonNull Drawable resource, @NonNull Object model, Target<Drawable> target, @NonNull DataSource dataSource, boolean isFirstResource) {
|
||||||
|
// if(resource instanceof WebpDrawable){
|
||||||
|
// WebpDrawable webpDrawable = (WebpDrawable) resource;
|
||||||
|
// webpDrawable.setLoopCount(LOOP_FOREVER);
|
||||||
|
// }
|
||||||
|
//
|
||||||
|
// return false;
|
||||||
|
// }
|
||||||
|
// }).into(view);
|
||||||
|
// }
|
||||||
|
}
|
||||||
@ -0,0 +1,87 @@
|
|||||||
|
package com.app.wave.keyboard.bean;
|
||||||
|
|
||||||
|
import androidx.room.Entity;
|
||||||
|
import androidx.room.PrimaryKey;
|
||||||
|
|
||||||
|
import java.io.Serializable;
|
||||||
|
|
||||||
|
@Entity
|
||||||
|
public class DetailsBean implements Serializable {
|
||||||
|
|
||||||
|
@PrimaryKey(autoGenerate = true)
|
||||||
|
private long id;
|
||||||
|
private String titleName;
|
||||||
|
|
||||||
|
private String thumbUrl;
|
||||||
|
|
||||||
|
private String thumbGif;
|
||||||
|
|
||||||
|
private String zipPath;
|
||||||
|
|
||||||
|
private String imgPath;
|
||||||
|
private String imgGif;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
public void setImgGif(String imgGif) {
|
||||||
|
this.imgGif = imgGif;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getTitleName() {
|
||||||
|
|
||||||
|
return titleName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getThumbUrl() {
|
||||||
|
|
||||||
|
return thumbUrl;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getThumbGif() {
|
||||||
|
|
||||||
|
return thumbGif;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getZipPath() {
|
||||||
|
|
||||||
|
return zipPath;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getImgPath() {
|
||||||
|
|
||||||
|
return imgPath;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setTitleName(String name) {
|
||||||
|
this.titleName = name;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setThumbUrl(String thumbUrl) {
|
||||||
|
this.thumbUrl = thumbUrl;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setThumbGif(String thumbGif) {
|
||||||
|
this.thumbGif = thumbGif;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setZipPath(String path) {
|
||||||
|
this.zipPath = path;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setImgPath(String imgPath) {
|
||||||
|
this.imgPath = imgPath;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getImgGif() {
|
||||||
|
return imgGif;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public long getId() {
|
||||||
|
return id;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setId(long id) {
|
||||||
|
this.id = id;
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,27 @@
|
|||||||
|
package com.app.wave.keyboard.bean;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
public class WrapperBean {
|
||||||
|
private String parentName;
|
||||||
|
|
||||||
|
private List<DetailsBean> keyboardList;
|
||||||
|
|
||||||
|
public String getParentName() {
|
||||||
|
|
||||||
|
return parentName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public List<DetailsBean> getKeyboardList() {
|
||||||
|
|
||||||
|
return keyboardList;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setParentName(String name) {
|
||||||
|
this.parentName = name;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setKeyboardList(List<DetailsBean> keyboardList) {
|
||||||
|
this.keyboardList = keyboardList;
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,6 @@
|
|||||||
|
package com.app.wave.keyboard.callback
|
||||||
|
|
||||||
|
interface MoreCallback {
|
||||||
|
|
||||||
|
fun OnClickSeeAll(name: String)
|
||||||
|
}
|
||||||
@ -0,0 +1,6 @@
|
|||||||
|
package com.app.wave.keyboard.callback
|
||||||
|
|
||||||
|
interface OIClickCallback {
|
||||||
|
|
||||||
|
fun OnItemClickListener( )
|
||||||
|
}
|
||||||
@ -0,0 +1,8 @@
|
|||||||
|
package com.app.wave.keyboard.callback
|
||||||
|
|
||||||
|
import com.app.wave.keyboard.bean.DetailsBean
|
||||||
|
|
||||||
|
interface RemoveCallback {
|
||||||
|
|
||||||
|
fun OnRemoveLike(data: DetailsBean)
|
||||||
|
}
|
||||||
@ -0,0 +1,8 @@
|
|||||||
|
package com.app.wave.keyboard.callback
|
||||||
|
|
||||||
|
import java.io.File
|
||||||
|
|
||||||
|
interface SetKBCallback {
|
||||||
|
|
||||||
|
fun OnApplySkinListener(fileList: List<File?>?)
|
||||||
|
}
|
||||||
30
app/src/main/java/com/app/wave/keyboard/database/BaseDB.kt
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
package com.app.wave.keyboard.database
|
||||||
|
|
||||||
|
import androidx.room.Database
|
||||||
|
import androidx.room.Room
|
||||||
|
import androidx.room.RoomDatabase
|
||||||
|
import com.app.wave.keyboard.App
|
||||||
|
import com.app.wave.keyboard.bean.DetailsBean
|
||||||
|
|
||||||
|
|
||||||
|
@Database(
|
||||||
|
entities = [DetailsBean::class],
|
||||||
|
version = App.Companion.DB_VERSION,
|
||||||
|
exportSchema = false
|
||||||
|
)
|
||||||
|
abstract class BaseDB : RoomDatabase() {
|
||||||
|
|
||||||
|
abstract fun ThemesDao(): DBDao
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
companion object {
|
||||||
|
val baseDB: BaseDB by lazy {
|
||||||
|
Room.databaseBuilder(
|
||||||
|
App.Companion.appInstance, BaseDB::class.java,
|
||||||
|
App.Companion.DB_NAME
|
||||||
|
).build()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
31
app/src/main/java/com/app/wave/keyboard/database/DBDao.kt
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
package com.app.wave.keyboard.database
|
||||||
|
|
||||||
|
import androidx.lifecycle.LiveData
|
||||||
|
import androidx.room.Dao
|
||||||
|
import androidx.room.Delete
|
||||||
|
import androidx.room.Insert
|
||||||
|
import androidx.room.OnConflictStrategy
|
||||||
|
import androidx.room.Query
|
||||||
|
import androidx.room.Update
|
||||||
|
import com.app.wave.keyboard.bean.DetailsBean
|
||||||
|
|
||||||
|
@Dao
|
||||||
|
interface DBDao {
|
||||||
|
@Insert(onConflict = OnConflictStrategy.Companion.IGNORE)
|
||||||
|
suspend fun insertData(data: DetailsBean): Long
|
||||||
|
|
||||||
|
@Query("select * from DetailsBean ")
|
||||||
|
fun queryAllLike(): LiveData<List<DetailsBean?>?>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@Query("select * from DetailsBean where titleName = :title ")
|
||||||
|
suspend fun queryIsLike(title: String ): DetailsBean?
|
||||||
|
|
||||||
|
|
||||||
|
@Delete
|
||||||
|
suspend fun delete(data: DetailsBean)
|
||||||
|
|
||||||
|
@Update
|
||||||
|
suspend fun updateLike(data: DetailsBean)
|
||||||
|
}
|
||||||
@ -0,0 +1,34 @@
|
|||||||
|
package com.app.wave.keyboard.database
|
||||||
|
|
||||||
|
import com.app.wave.keyboard.bean.DetailsBean
|
||||||
|
import kotlinx.coroutines.Dispatchers
|
||||||
|
import kotlinx.coroutines.withContext
|
||||||
|
|
||||||
|
object DBManager {
|
||||||
|
|
||||||
|
|
||||||
|
suspend fun addLike(data: DetailsBean) {
|
||||||
|
withContext(Dispatchers.IO) {
|
||||||
|
BaseDB.baseDB.ThemesDao().insertData(data)
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
suspend fun removeLike(data: DetailsBean) {
|
||||||
|
withContext(Dispatchers.IO) {
|
||||||
|
val queryIsLike = BaseDB.baseDB.ThemesDao().queryIsLike(data.titleName)
|
||||||
|
if (queryIsLike != null) {
|
||||||
|
BaseDB.baseDB.ThemesDao().delete(queryIsLike)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
suspend fun getIsLike(name: String, action: (isLike: Boolean) -> Unit) {
|
||||||
|
withContext(Dispatchers.IO) {
|
||||||
|
val query = BaseDB.baseDB.ThemesDao().queryIsLike(name)
|
||||||
|
withContext(Dispatchers.Main) {
|
||||||
|
action.invoke(query != null)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,366 @@
|
|||||||
|
package com.app.wave.keyboard.kbhelper;
|
||||||
|
|
||||||
|
import android.annotation.SuppressLint;
|
||||||
|
import android.graphics.drawable.Drawable;
|
||||||
|
import android.inputmethodservice.InputMethodService;
|
||||||
|
import android.media.MediaPlayer;
|
||||||
|
import android.os.Build;
|
||||||
|
import android.util.Log;
|
||||||
|
import android.view.View;
|
||||||
|
import android.view.WindowManager;
|
||||||
|
import android.view.inputmethod.EditorInfo;
|
||||||
|
import android.view.inputmethod.InputConnection;
|
||||||
|
import android.widget.ImageView;
|
||||||
|
import android.widget.VideoView;
|
||||||
|
|
||||||
|
import androidx.annotation.NonNull;
|
||||||
|
import androidx.annotation.Nullable;
|
||||||
|
|
||||||
|
import com.bumptech.glide.Glide;
|
||||||
|
import com.bumptech.glide.integration.webp.decoder.WebpDrawable;
|
||||||
|
import com.bumptech.glide.load.DataSource;
|
||||||
|
import com.bumptech.glide.load.engine.GlideException;
|
||||||
|
import com.bumptech.glide.request.RequestListener;
|
||||||
|
import com.bumptech.glide.request.target.Target;
|
||||||
|
import com.app.wave.keyboard.App;
|
||||||
|
import com.app.wave.keyboard.R;
|
||||||
|
import com.app.wave.keyboard.utils.MyKeyName;
|
||||||
|
import com.app.wave.keyboard.utils.Comutils;
|
||||||
|
import com.app.wave.keyboard.utils.SavePresentKB;
|
||||||
|
import com.app.wave.keyboard.sourcecode.KBCode;
|
||||||
|
import com.app.wave.keyboard.sourcecode.KBCodeView;
|
||||||
|
|
||||||
|
import kotlin.Unit;
|
||||||
|
import kotlin.jvm.functions.Function2;
|
||||||
|
|
||||||
|
public class InputService extends InputMethodService implements KBCodeView.OnKeyboardActionListener {
|
||||||
|
|
||||||
|
private KBView myKeyBoardView;
|
||||||
|
private KBCode mKeyBoard;
|
||||||
|
private View parentView;
|
||||||
|
private ImageView imBG;
|
||||||
|
private VideoView videoView;
|
||||||
|
|
||||||
|
private int a = R.xml.xml_one;
|
||||||
|
private int b = R.xml.xml_two;
|
||||||
|
private int c = R.xml.xml_three;
|
||||||
|
|
||||||
|
private int curImeAction = EditorInfo.IME_ACTION_UNSPECIFIED;
|
||||||
|
|
||||||
|
@SuppressLint("InflateParams")
|
||||||
|
@Override
|
||||||
|
public View onCreateInputView() {
|
||||||
|
parentView = getLayoutInflater().inflate(R.layout.item_keyboard_preview, null);
|
||||||
|
|
||||||
|
// API 30+ 的特殊处理
|
||||||
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.R) {
|
||||||
|
// 设置窗口标志,确保键盘正确显示
|
||||||
|
try {
|
||||||
|
if (getWindow() != null && getWindow().getWindow() != null) {
|
||||||
|
getWindow().getWindow().addFlags(
|
||||||
|
WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN |
|
||||||
|
WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS
|
||||||
|
);
|
||||||
|
|
||||||
|
// 对于 API 31+
|
||||||
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.S) {
|
||||||
|
getWindow().getWindow().setDecorFitsSystemWindows(false);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (Exception e) {
|
||||||
|
Log.e(App.TAG, "Error setting window flags: " + e.getMessage());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
findView();
|
||||||
|
return parentView;
|
||||||
|
}
|
||||||
|
|
||||||
|
private void findView() {
|
||||||
|
imBG = parentView.findViewById(R.id.gif_bg);
|
||||||
|
videoView = parentView.findViewById(R.id.video_view);
|
||||||
|
mKeyBoard = new KBCode(this, a);
|
||||||
|
myKeyBoardView = parentView.findViewById(R.id.custom_input_view);
|
||||||
|
myKeyBoardView.setEnabled(true);
|
||||||
|
myKeyBoardView.setPreviewEnabled(false);
|
||||||
|
myKeyBoardView.setKeyboard(mKeyBoard);
|
||||||
|
myKeyBoardView.setOnKeyboardActionListener(this);
|
||||||
|
|
||||||
|
// API 31+ 的特殊处理
|
||||||
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.S) {
|
||||||
|
myKeyBoardView.setFocusable(true);
|
||||||
|
myKeyBoardView.setFocusableInTouchMode(true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onStartInputView(EditorInfo info, boolean restarting) {
|
||||||
|
super.onStartInputView(info, restarting);
|
||||||
|
|
||||||
|
// API 31+ 可能需要额外的初始化
|
||||||
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.S) {
|
||||||
|
// 确保键盘视图正确初始化
|
||||||
|
if (myKeyBoardView != null) {
|
||||||
|
myKeyBoardView.requestFocus();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 更新当前输入法动作
|
||||||
|
if (info != null) {
|
||||||
|
curImeAction = Comutils.INSTANCE.getTextForImeAction(info.imeOptions);
|
||||||
|
Log.d(App.TAG, "onStartInputView: curImeAction = " + curImeAction);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onWindowHidden() {
|
||||||
|
super.onWindowHidden();
|
||||||
|
if (videoView != null && videoView.isPlaying()) {
|
||||||
|
videoView.pause();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onWindowShown() {
|
||||||
|
super.onWindowShown();
|
||||||
|
|
||||||
|
// 获取当前编辑信息
|
||||||
|
EditorInfo currentInputEditorInfo = getCurrentInputEditorInfo();
|
||||||
|
if (currentInputEditorInfo != null) {
|
||||||
|
curImeAction = Comutils.INSTANCE.getTextForImeAction(currentInputEditorInfo.imeOptions);
|
||||||
|
}
|
||||||
|
|
||||||
|
String skinPath = SavePresentKB.INSTANCE.getSkinPath();
|
||||||
|
|
||||||
|
if (skinPath == null || skinPath.isEmpty()) {
|
||||||
|
Log.d(App.TAG, "---------skinPath= null");
|
||||||
|
if (myKeyBoardView != null) {
|
||||||
|
myKeyBoardView.updateUi(curImeAction);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
Log.d(App.TAG, "---------skinPath= " + skinPath);
|
||||||
|
KbFuncs.INSTANCE.readBgOrVideo(this, new Function2<String, Drawable, Unit>() {
|
||||||
|
@Override
|
||||||
|
public Unit invoke(String s, Drawable drawable) {
|
||||||
|
Log.d(App.TAG, "---------s= " + s + "---------drawable=" + drawable);
|
||||||
|
|
||||||
|
// 检查视图是否仍然有效
|
||||||
|
if (myKeyBoardView == null || imBG == null || videoView == null) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (s != null) {
|
||||||
|
myKeyBoardView.setBackground(null);
|
||||||
|
if (s.endsWith(".gif")) {
|
||||||
|
imBG.setVisibility(View.VISIBLE);
|
||||||
|
videoView.setVisibility(View.GONE);
|
||||||
|
try {
|
||||||
|
Glide.with(InputService.this)
|
||||||
|
.load(s)
|
||||||
|
.addListener(new RequestListener<Drawable>() {
|
||||||
|
@Override
|
||||||
|
public boolean onLoadFailed(@Nullable GlideException e, @Nullable Object model, @NonNull Target<Drawable> target, boolean isFirstResource) {
|
||||||
|
Log.e(App.TAG, "Failed to load GIF: " + s);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean onResourceReady(@NonNull Drawable resource, @NonNull Object model, Target<Drawable> target, @NonNull DataSource dataSource, boolean isFirstResource) {
|
||||||
|
if (resource instanceof WebpDrawable) {
|
||||||
|
((WebpDrawable) resource).setLoopCount(WebpDrawable.LOOP_FOREVER);
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}).into(imBG);
|
||||||
|
} catch (Exception e) {
|
||||||
|
Log.e(App.TAG, "Error loading GIF: " + e.getMessage());
|
||||||
|
}
|
||||||
|
} else if (s.endsWith(".mp4")) {
|
||||||
|
imBG.setVisibility(View.GONE);
|
||||||
|
videoView.setVisibility(View.VISIBLE);
|
||||||
|
try {
|
||||||
|
videoView.setVideoPath(s);
|
||||||
|
videoView.start();
|
||||||
|
videoView.setOnPreparedListener(new MediaPlayer.OnPreparedListener() {
|
||||||
|
@Override
|
||||||
|
public void onPrepared(MediaPlayer mp) {
|
||||||
|
mp.setLooping(true);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
} catch (Exception e) {
|
||||||
|
Log.e(App.TAG, "Error playing video: " + e.getMessage());
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
Log.w(App.TAG, "Unknown media type: " + s);
|
||||||
|
}
|
||||||
|
} else if (drawable != null) {
|
||||||
|
myKeyBoardView.setBackground(drawable);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (myKeyBoardView != null) {
|
||||||
|
myKeyBoardView.updateUi(curImeAction);
|
||||||
|
}
|
||||||
|
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onDestroy() {
|
||||||
|
super.onDestroy();
|
||||||
|
if (videoView != null) {
|
||||||
|
videoView.stopPlayback();
|
||||||
|
}
|
||||||
|
|
||||||
|
// 清理资源
|
||||||
|
if (myKeyBoardView != null) {
|
||||||
|
myKeyBoardView.setOnKeyboardActionListener(null);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onPress(int primaryCode) {
|
||||||
|
// 可选:播放按键音效或提供触觉反馈
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onRelease(int primaryCode) {
|
||||||
|
// 可选:释放资源
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onKey(int primaryCode, int[] keyCodes) {
|
||||||
|
InputConnection curInputConnect = getCurrentInputConnection();
|
||||||
|
if (curInputConnect == null) {
|
||||||
|
Log.w(App.TAG, "InputConnection is null");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
switch (primaryCode) {
|
||||||
|
case MyKeyName.KEY_CODE_DELETE:
|
||||||
|
curInputConnect.deleteSurroundingText(1, 0);
|
||||||
|
break;
|
||||||
|
case MyKeyName.KEY_CODE_SHIFT:
|
||||||
|
switchShift();
|
||||||
|
break;
|
||||||
|
case MyKeyName.KEY_CODE_NUMBER_SHIFT:
|
||||||
|
case MyKeyName.KEY_CODE_SYMBOL_SHIFT:
|
||||||
|
switchMoreOrNumber();
|
||||||
|
break;
|
||||||
|
case MyKeyName.KEY_CODE_CHANGE_NUMBER:
|
||||||
|
case MyKeyName.KEY_CODE_BACK:
|
||||||
|
switchNormalOrNumber();
|
||||||
|
break;
|
||||||
|
|
||||||
|
case MyKeyName.KEY_CODE_COMPLETE:
|
||||||
|
case MyKeyName.KEY_CODE_CANCEL:
|
||||||
|
if (curImeAction != EditorInfo.IME_ACTION_UNSPECIFIED) {
|
||||||
|
curInputConnect.performEditorAction(curImeAction);
|
||||||
|
} else {
|
||||||
|
// 如果没有指定动作,使用完成动作
|
||||||
|
curInputConnect.performEditorAction(EditorInfo.IME_ACTION_DONE);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
String codeToChar = KbFuncs.INSTANCE.primaryCodeToChar(primaryCode);
|
||||||
|
if (codeToChar != null) {
|
||||||
|
curInputConnect.commitText(codeToChar, 1);
|
||||||
|
if (myKeyBoardView != null && myKeyBoardView.isLowerCase() == 1) {
|
||||||
|
// 自动转小写
|
||||||
|
myKeyBoardView.setLowerCase(0);
|
||||||
|
KbFuncs.INSTANCE.keyToLowerCase(mKeyBoard);
|
||||||
|
myKeyBoardView.setKeyboard(mKeyBoard);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void switchMoreOrNumber() {
|
||||||
|
if (myKeyBoardView == null) return;
|
||||||
|
|
||||||
|
int mode = myKeyBoardView.getMode();
|
||||||
|
switch (mode) {
|
||||||
|
case 1:
|
||||||
|
mKeyBoard = new KBCode(this, c);
|
||||||
|
myKeyBoardView.setMode(2);
|
||||||
|
myKeyBoardView.setKeyboard(mKeyBoard);
|
||||||
|
break;
|
||||||
|
case 2:
|
||||||
|
mKeyBoard = new KBCode(this, b);
|
||||||
|
myKeyBoardView.setMode(1);
|
||||||
|
myKeyBoardView.setKeyboard(mKeyBoard);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void switchNormalOrNumber() {
|
||||||
|
if (myKeyBoardView == null) return;
|
||||||
|
|
||||||
|
int mode = myKeyBoardView.getMode();
|
||||||
|
switch (mode) {
|
||||||
|
case 0:
|
||||||
|
mKeyBoard = new KBCode(this, b);
|
||||||
|
myKeyBoardView.setMode(1);
|
||||||
|
myKeyBoardView.setKeyboard(mKeyBoard);
|
||||||
|
break;
|
||||||
|
case 1:
|
||||||
|
case 2:
|
||||||
|
mKeyBoard = new KBCode(this, a);
|
||||||
|
myKeyBoardView.setMode(0);
|
||||||
|
myKeyBoardView.setKeyboard(mKeyBoard);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void switchShift() {
|
||||||
|
if (myKeyBoardView == null) return;
|
||||||
|
|
||||||
|
int lowerCase = myKeyBoardView.isLowerCase();
|
||||||
|
switch (lowerCase) {
|
||||||
|
case 0:
|
||||||
|
// 当前小写转大写
|
||||||
|
myKeyBoardView.setLowerCase(1);
|
||||||
|
KbFuncs.INSTANCE.keyToUpper(mKeyBoard);
|
||||||
|
myKeyBoardView.setKeyboard(mKeyBoard);
|
||||||
|
break;
|
||||||
|
case 1:
|
||||||
|
// 当前大写转锁定大写
|
||||||
|
myKeyBoardView.setLowerCase(2);
|
||||||
|
break;
|
||||||
|
case 2:
|
||||||
|
// 当前锁定大写转小写
|
||||||
|
myKeyBoardView.setLowerCase(0);
|
||||||
|
KbFuncs.INSTANCE.keyToLowerCase(mKeyBoard);
|
||||||
|
myKeyBoardView.setKeyboard(mKeyBoard);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onText(CharSequence text) {
|
||||||
|
// 处理文本输入
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void swipeLeft() {
|
||||||
|
// 处理向左滑动
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void swipeRight() {
|
||||||
|
// 处理向右滑动
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void swipeDown() {
|
||||||
|
// 处理向下滑动
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void swipeUp() {
|
||||||
|
// 处理向上滑动
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,33 @@
|
|||||||
|
package com.app.wave.keyboard.kbhelper;
|
||||||
|
|
||||||
|
// 按键对象模型
|
||||||
|
public class KBModel {
|
||||||
|
private String name;
|
||||||
|
private String background;
|
||||||
|
private String label;
|
||||||
|
|
||||||
|
public KBModel(String name) {
|
||||||
|
this.name = name;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Getters and Setters
|
||||||
|
public String getName() {
|
||||||
|
return name;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getBackground() {
|
||||||
|
return background;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setBackground(String background) {
|
||||||
|
this.background = background;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getLabel() {
|
||||||
|
return label;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setLabel(String label) {
|
||||||
|
this.label = label;
|
||||||
|
}
|
||||||
|
}
|
||||||
324
app/src/main/java/com/app/wave/keyboard/kbhelper/KBView.java
Normal file
@ -0,0 +1,324 @@
|
|||||||
|
package com.app.wave.keyboard.kbhelper;
|
||||||
|
|
||||||
|
|
||||||
|
import android.content.Context;
|
||||||
|
import android.content.res.TypedArray;
|
||||||
|
import android.graphics.Canvas;
|
||||||
|
import android.graphics.Paint;
|
||||||
|
import android.graphics.Rect;
|
||||||
|
import android.graphics.drawable.Drawable;
|
||||||
|
import android.util.AttributeSet;
|
||||||
|
import android.util.Log;
|
||||||
|
import android.view.inputmethod.EditorInfo;
|
||||||
|
|
||||||
|
import androidx.core.graphics.drawable.DrawableCompat;
|
||||||
|
|
||||||
|
import com.app.wave.keyboard.App;
|
||||||
|
import com.app.wave.keyboard.R;
|
||||||
|
import com.app.wave.keyboard.sourcecode.KBCode;
|
||||||
|
import com.app.wave.keyboard.sourcecode.KBCodeView;
|
||||||
|
import com.app.wave.keyboard.utils.MyKeyName;
|
||||||
|
import com.app.wave.keyboard.utils.KBManager;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
|
||||||
|
public class KBView extends KBCodeView {
|
||||||
|
|
||||||
|
private Paint mPaint;
|
||||||
|
private Context mContext;
|
||||||
|
|
||||||
|
private float mRation = 0.5f;
|
||||||
|
|
||||||
|
|
||||||
|
//0 小写 1 大写 2 大写锁定
|
||||||
|
private int isLowerCase = 0;
|
||||||
|
//0 默认键盘 1 字母键盘 2 符号键盘
|
||||||
|
private int mMode = 0;
|
||||||
|
|
||||||
|
private KBManager KBManager;
|
||||||
|
private int curImeAction = EditorInfo.IME_ACTION_UNSPECIFIED;
|
||||||
|
|
||||||
|
public KBView(Context context, AttributeSet attrs) {
|
||||||
|
super(context, attrs);
|
||||||
|
mContext = context;
|
||||||
|
setAttribute(attrs, context);
|
||||||
|
}
|
||||||
|
|
||||||
|
public KBView(Context context, AttributeSet attrs, int defStyleAttr) {
|
||||||
|
super(context, attrs, defStyleAttr);
|
||||||
|
mContext = context;
|
||||||
|
setAttribute(attrs, context);
|
||||||
|
}
|
||||||
|
|
||||||
|
public KBView(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) {
|
||||||
|
super(context, attrs, defStyleAttr, defStyleRes);
|
||||||
|
mContext = context;
|
||||||
|
setAttribute(attrs, context);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public void setMode(int mType) {
|
||||||
|
this.mMode = mType;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getMode() {
|
||||||
|
return mMode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int isLowerCase() {
|
||||||
|
return isLowerCase;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setLowerCase(int lowerCase) {
|
||||||
|
isLowerCase = lowerCase;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void updateUi(int ime) {
|
||||||
|
Log.d(App.TAG, "----------ime=" + ime);
|
||||||
|
curImeAction = ime;
|
||||||
|
KBManager.updateSkinConfig();
|
||||||
|
invalidate();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void initPaint() {
|
||||||
|
mPaint = new Paint();
|
||||||
|
mPaint.setAntiAlias(true);
|
||||||
|
mPaint.setTextAlign(Paint.Align.CENTER);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
private void setAttribute(AttributeSet attrs, Context con) {
|
||||||
|
KBManager = new KBManager(con);
|
||||||
|
initPaint();
|
||||||
|
TypedArray mTypedArray = con.obtainStyledAttributes(attrs, R.styleable.CustomInputView);
|
||||||
|
|
||||||
|
// int color = mTypedArray.getColor(R.styleable.CustomInputView_text_color_done, 1);
|
||||||
|
//
|
||||||
|
// Drawable drawable = mTypedArray.getDrawable(R.styleable.CustomInputView_drawable_cancel);
|
||||||
|
//
|
||||||
|
// int textSize = mTypedArray.getInt(R.styleable.CustomInputView_text_size_key, 12);
|
||||||
|
|
||||||
|
mTypedArray.recycle();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onDraw(Canvas canvas) {
|
||||||
|
super.onDraw(canvas);
|
||||||
|
|
||||||
|
|
||||||
|
RespConfig config = KBManager.getConfig();
|
||||||
|
List<KBModel> KBModels = new ArrayList<>();
|
||||||
|
int i = 0;
|
||||||
|
|
||||||
|
for (KBCode.Key curKey : getKeyboard().getKeys()) {
|
||||||
|
int code = curKey.codes[0];
|
||||||
|
if (config != null&& !config.getLayouts().isEmpty()) {
|
||||||
|
if (code == 113 ||code == 81 || code == 49||code == 91) {
|
||||||
|
i = 0;
|
||||||
|
RespLayout respLayout = config.getLayouts().get(0);
|
||||||
|
KBModels = respLayout.getKeys();
|
||||||
|
} else if (code == 97||code == 65 || code == 33||code == 126) {
|
||||||
|
i = 0;
|
||||||
|
RespLayout respLayout = config.getLayouts().get(1);
|
||||||
|
KBModels = respLayout.getKeys();
|
||||||
|
}else if (code == -1 || code == -103||code==-101) {
|
||||||
|
i = 0;
|
||||||
|
RespLayout respLayout = config.getLayouts().get(2);
|
||||||
|
KBModels = respLayout.getKeys();
|
||||||
|
}else if (code == -2 || code == -102) {
|
||||||
|
i = 0;
|
||||||
|
RespLayout respLayout = config.getLayouts().get(3);
|
||||||
|
KBModels = respLayout.getKeys();
|
||||||
|
}
|
||||||
|
String background = KBModels.get(i).getBackground()+".9.png";
|
||||||
|
i++;
|
||||||
|
Drawable configBg = KBManager.getConfigBg(background);
|
||||||
|
realNewDraw(configBg, curKey, canvas, code);
|
||||||
|
|
||||||
|
} else {
|
||||||
|
realDraw(curKey, canvas, code);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
private void realNewDraw(Drawable configBg, KBCode.Key curKey, Canvas canvas, int code) {
|
||||||
|
switch (code) {
|
||||||
|
case MyKeyName.KEY_CODE_SHIFT:
|
||||||
|
// drawAllShift(curKey, canvas);
|
||||||
|
onDrawCurKey(curKey, canvas, "Shift", configBg, null);
|
||||||
|
break;
|
||||||
|
case MyKeyName.KEY_CODE_NUMBER_SHIFT:
|
||||||
|
onDrawCurKey(curKey, canvas, "More", configBg, null);
|
||||||
|
break;
|
||||||
|
case MyKeyName.KEY_CODE_DELETE:
|
||||||
|
onDrawCurKey(curKey, canvas, "Delete", configBg, null);
|
||||||
|
break;
|
||||||
|
case MyKeyName.KEY_CODE_SYMBOL_SHIFT:
|
||||||
|
onDrawCurKey(curKey, canvas, "123", configBg, null);
|
||||||
|
break;
|
||||||
|
case MyKeyName.KEY_CODE_CHANGE_NUMBER:
|
||||||
|
onDrawCurKey(curKey, canvas, null, configBg, null);
|
||||||
|
break;
|
||||||
|
case MyKeyName.KEY_CODE_BACK:
|
||||||
|
onDrawCurKey(curKey, canvas, "Back", configBg, null);
|
||||||
|
break;
|
||||||
|
case MyKeyName.KEY_CODE_SPACE:
|
||||||
|
onDrawCurKey(curKey, canvas, null, configBg, null);
|
||||||
|
break;
|
||||||
|
case MyKeyName.KEY_CODE_COMPLETE, MyKeyName.KEY_CODE_CANCEL:
|
||||||
|
Log.d(App.TAG, "-11111111111---------curImeAction=" + curImeAction);
|
||||||
|
if (curImeAction == EditorInfo.IME_ACTION_SEARCH) {
|
||||||
|
onDrawCurKey(curKey, canvas, "Search", configBg, null);
|
||||||
|
} else {
|
||||||
|
onDrawCurKey(curKey, canvas, "Done", configBg, null);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
|
||||||
|
onDrawCurKey(curKey, canvas, null, configBg, null);
|
||||||
|
break;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void realDraw(KBCode.Key curKey, Canvas canvas, int code) {
|
||||||
|
switch (code) {
|
||||||
|
case MyKeyName.KEY_CODE_SHIFT:
|
||||||
|
drawAllShift(curKey, canvas);
|
||||||
|
break;
|
||||||
|
case MyKeyName.KEY_CODE_NUMBER_SHIFT:
|
||||||
|
onDrawCurKey(curKey, canvas, "More", KBManager.getFunctionDraw(), null);
|
||||||
|
break;
|
||||||
|
case MyKeyName.KEY_CODE_DELETE:
|
||||||
|
onDrawCurKey(curKey, canvas, "Delete", KBManager.getFunctionDraw(), null);
|
||||||
|
break;
|
||||||
|
case MyKeyName.KEY_CODE_SYMBOL_SHIFT:
|
||||||
|
onDrawCurKey(curKey, canvas, "123", KBManager.getFunctionDraw(), null);
|
||||||
|
break;
|
||||||
|
case MyKeyName.KEY_CODE_CHANGE_NUMBER:
|
||||||
|
onDrawCurKey(curKey, canvas, null, KBManager.getToDraw(), null);
|
||||||
|
break;
|
||||||
|
case MyKeyName.KEY_CODE_BACK:
|
||||||
|
onDrawCurKey(curKey, canvas, "Back", KBManager.getToDraw(), null);
|
||||||
|
break;
|
||||||
|
case MyKeyName.KEY_CODE_SPACE:
|
||||||
|
onDrawCurKey(curKey, canvas, null, KBManager.getSpaceDraw(), null);
|
||||||
|
break;
|
||||||
|
case MyKeyName.KEY_CODE_COMPLETE, MyKeyName.KEY_CODE_CANCEL:
|
||||||
|
Log.d(App.TAG, "-11111111111---------curImeAction=" + curImeAction);
|
||||||
|
if (curImeAction == EditorInfo.IME_ACTION_SEARCH) {
|
||||||
|
onDrawCurKey(curKey, canvas, "Search", KBManager.getFunctionDraw(), null);
|
||||||
|
} else {
|
||||||
|
onDrawCurKey(curKey, canvas, "Done", KBManager.getFunctionDraw(), null);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
|
||||||
|
onDrawCurKey(curKey, canvas, null, KBManager.getGeneralDraw(), null);
|
||||||
|
break;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void drawAllShift(KBCode.Key curKey, Canvas canvas) {
|
||||||
|
if (isLowerCase == 0) {
|
||||||
|
onDrawCurKey(curKey, canvas, "Shift", KBManager.getFunctionDraw(), null);
|
||||||
|
} else if (isLowerCase == 1) {
|
||||||
|
onDrawCurKey(curKey, canvas, "Shift", KBManager.getFunctionDraw(), null);
|
||||||
|
} else if (isLowerCase == 2) {
|
||||||
|
onDrawCurKey(curKey, canvas, "Shift", KBManager.getFunctionDraw(), null);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void onDrawCurKey(KBCode.Key curKey, Canvas curCanvas, String label, Drawable bgDrawable, Drawable iconDraw) {
|
||||||
|
|
||||||
|
if (bgDrawable != null) {
|
||||||
|
onDrawKeyBackground(curKey, curCanvas, bgDrawable);
|
||||||
|
}
|
||||||
|
if (iconDraw != null) {
|
||||||
|
onDrawKeyIcon(curKey, curCanvas, iconDraw);
|
||||||
|
}
|
||||||
|
onDrawKeyText(curKey, curCanvas, label);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void onDrawKeyText(KBCode.Key curKey, Canvas curCanvas, String label) {
|
||||||
|
mPaint.setColor(KBManager.getKeyTextColor());
|
||||||
|
mPaint.setTextSize(mContext.getResources().getDimension(R.dimen.text_size));
|
||||||
|
float v = curKey.width / 2f;
|
||||||
|
float v1 = curKey.height / 2f;
|
||||||
|
float v2 = (mPaint.getTextSize() - mPaint.descent()) / 2f;
|
||||||
|
|
||||||
|
|
||||||
|
if (curKey.label != null) {
|
||||||
|
curCanvas.drawText((String) curKey.label, curKey.x + getPaddingLeft() + v, curKey.y + getPaddingRight() + v1 + v2, mPaint);
|
||||||
|
} else if (label != null) {
|
||||||
|
curCanvas.drawText(label, curKey.x + getPaddingLeft() + v, curKey.y + getPaddingRight() + v1 + v2, mPaint);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
private void onDrawKeyBackground(KBCode.Key curKey, Canvas curCanvas, Drawable curDrawable) {
|
||||||
|
if (curKey.codes[0] != 0) {
|
||||||
|
curDrawable.setState(curKey.getCurrentDrawableState());
|
||||||
|
}
|
||||||
|
Rect rect = new Rect((curKey.x + this.getPaddingLeft()), (curKey.y + this.getPaddingTop()), (curKey.x + this.getPaddingLeft() + curKey.width), (curKey.y + this.getPaddingTop() + curKey.height));
|
||||||
|
curDrawable.setBounds(rect);
|
||||||
|
|
||||||
|
curDrawable.draw(curCanvas);
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
private void onDrawKeyIcon(KBCode.Key curKey, Canvas curCanvas, Drawable curDrawable) {
|
||||||
|
|
||||||
|
Drawable wrap = DrawableCompat.wrap(curDrawable);
|
||||||
|
|
||||||
|
curKey.icon = curDrawable;
|
||||||
|
float iconW = (float) curKey.icon.getIntrinsicWidth();
|
||||||
|
float iconH = (float) curKey.icon.getIntrinsicHeight();
|
||||||
|
|
||||||
|
float wDivRation = iconW / curKey.width;
|
||||||
|
float hDivRation = iconH / curKey.height;
|
||||||
|
|
||||||
|
curKey.icon.draw(curCanvas);
|
||||||
|
|
||||||
|
if (wDivRation > hDivRation) {
|
||||||
|
float minRatio = 0;
|
||||||
|
if (wDivRation <= mRation) {
|
||||||
|
minRatio = wDivRation;
|
||||||
|
} else {
|
||||||
|
minRatio = mRation;
|
||||||
|
}
|
||||||
|
iconH = (iconH / wDivRation) * minRatio;
|
||||||
|
iconW = (iconW / wDivRation) * minRatio;
|
||||||
|
} else {
|
||||||
|
float minRatio = 0;
|
||||||
|
if (hDivRation <= mRation) {
|
||||||
|
minRatio = hDivRation;
|
||||||
|
} else {
|
||||||
|
minRatio = mRation;
|
||||||
|
}
|
||||||
|
iconH = (iconH / hDivRation) * minRatio;
|
||||||
|
iconW = (iconW / hDivRation) * minRatio;
|
||||||
|
}
|
||||||
|
float subW = (curKey.width - iconW) / 2f;
|
||||||
|
float subH = (curKey.height - iconH) / 2f;
|
||||||
|
int xLeft = (int) (curKey.x + getPaddingLeft() + subW);
|
||||||
|
int yTop = (int) (curKey.y + getPaddingTop() + subH);
|
||||||
|
int xRight = (int) (xLeft + iconW);
|
||||||
|
int yBottom = (int) (yTop + iconH);
|
||||||
|
curKey.icon.setBounds(xLeft, yTop, xRight, yBottom);
|
||||||
|
curKey.icon.draw(curCanvas);
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
100
app/src/main/java/com/app/wave/keyboard/kbhelper/KbFuncs.kt
Normal file
@ -0,0 +1,100 @@
|
|||||||
|
package com.app.wave.keyboard.kbhelper
|
||||||
|
|
||||||
|
import android.annotation.SuppressLint
|
||||||
|
import android.content.Context
|
||||||
|
import android.graphics.BitmapFactory
|
||||||
|
import android.graphics.drawable.BitmapDrawable
|
||||||
|
import android.graphics.drawable.Drawable
|
||||||
|
import android.util.Log
|
||||||
|
import com.app.wave.keyboard.App
|
||||||
|
import com.app.wave.keyboard.sourcecode.KBCode
|
||||||
|
import com.app.wave.keyboard.utils.MyKeyName
|
||||||
|
import com.app.wave.keyboard.utils.SavePresentKB
|
||||||
|
import java.io.File
|
||||||
|
|
||||||
|
object KbFuncs {
|
||||||
|
fun keyToUpper(mKeyBoard: KBCode) {
|
||||||
|
for (key in mKeyBoard.keys) {
|
||||||
|
if (key.label != null) {
|
||||||
|
if (key.label.length == 1) {
|
||||||
|
val charLabel = key.label.toString()[0]
|
||||||
|
val toUpperCase = charLabel.uppercaseChar()
|
||||||
|
key.codes[0] = toUpperCase.toInt()
|
||||||
|
key.label = toUpperCase.toString()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
fun keyToLowerCase(mKeyBoard: KBCode) {
|
||||||
|
for (key in mKeyBoard.keys) {
|
||||||
|
if (key.label != null) {
|
||||||
|
if (key.label.length == 1) {
|
||||||
|
val charLabel = key.label.toString()[0]
|
||||||
|
val toLowerCase = charLabel.lowercaseChar()
|
||||||
|
key.codes[0] = toLowerCase.toInt()
|
||||||
|
key.label = toLowerCase.toString()
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fun primaryCodeToChar(primCode: Int): String {
|
||||||
|
val toString = primCode.toChar().toString()
|
||||||
|
|
||||||
|
return toString
|
||||||
|
}
|
||||||
|
|
||||||
|
@SuppressLint("SuspiciousIndentation")
|
||||||
|
fun readBgOrVideo(
|
||||||
|
context: Context,
|
||||||
|
playAction: (gif: String?, bgDraw: Drawable?) -> Unit
|
||||||
|
) {
|
||||||
|
|
||||||
|
SavePresentKB.getSkinPath()?.let { resPath ->
|
||||||
|
val videoPath = "${resPath}res/raw/${MyKeyName.videoName}"
|
||||||
|
val videoPath2 = "${resPath}res/raw/${MyKeyName.video}"
|
||||||
|
val backgroundPath = "${resPath}res/drawable-xxhdpi-v4/${MyKeyName.bgName}"
|
||||||
|
val backgroundPath_png = "${resPath}res/drawable-xxhdpi-v4/${MyKeyName.bgName_png}"
|
||||||
|
val file = File(videoPath)
|
||||||
|
val file2 = File(videoPath2)
|
||||||
|
val file3 = File(backgroundPath)
|
||||||
|
val file4 = File(backgroundPath_png)
|
||||||
|
if (file.exists() || file2.exists()) {
|
||||||
|
Log.d(App.Companion.TAG, "--------11111111= resPath=${resPath}")
|
||||||
|
val path: String = if (file.exists()) {
|
||||||
|
videoPath
|
||||||
|
} else {
|
||||||
|
videoPath2
|
||||||
|
}
|
||||||
|
val bitmapDrawable =
|
||||||
|
BitmapDrawable(context.resources, BitmapFactory.decodeFile(path))
|
||||||
|
|
||||||
|
playAction.invoke(path, null)
|
||||||
|
|
||||||
|
// playAction.invoke(mediaPlayer,null);
|
||||||
|
} else {
|
||||||
|
Log.d(
|
||||||
|
App.Companion.TAG,
|
||||||
|
"--------11111111= file3.exists()" + file3.exists() + "---resPath=" + resPath
|
||||||
|
)
|
||||||
|
if (file3.exists()) {
|
||||||
|
val bitmapDrawable =
|
||||||
|
BitmapDrawable(context.resources, BitmapFactory.decodeFile(backgroundPath))
|
||||||
|
playAction.invoke(null, bitmapDrawable)
|
||||||
|
} else if (file4.exists()) {
|
||||||
|
val bitmapDrawable =
|
||||||
|
BitmapDrawable(context.resources, BitmapFactory.decodeFile(backgroundPath_png))
|
||||||
|
playAction.invoke(null, bitmapDrawable)
|
||||||
|
} else {
|
||||||
|
playAction.invoke(null, null)
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
168
app/src/main/java/com/app/wave/keyboard/kbhelper/RespConfig.java
Normal file
@ -0,0 +1,168 @@
|
|||||||
|
package com.app.wave.keyboard.kbhelper;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.LinkedHashMap;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
public class RespConfig {
|
||||||
|
private String version;
|
||||||
|
private String supportLayouts;
|
||||||
|
private int hideHint;
|
||||||
|
private String layoutStyle;
|
||||||
|
private List<RespLayout> layouts = new ArrayList<>();
|
||||||
|
private List<KBModel> KBModelList = new ArrayList<>();
|
||||||
|
private LinkedHashMap<String, String> maps = new LinkedHashMap<>();
|
||||||
|
private String KeyDefault;
|
||||||
|
private String KeyMarkDefault;
|
||||||
|
private String KeyFuncDefault;
|
||||||
|
private String KeyShift;
|
||||||
|
private String KeyDelete;
|
||||||
|
private String KeyAlphaSymbol;
|
||||||
|
private String KeyEmoji;
|
||||||
|
private String KeyMark;
|
||||||
|
private String KeySpace;
|
||||||
|
private String KeyEnter;
|
||||||
|
|
||||||
|
// Getters and Setters
|
||||||
|
public String getVersion() {
|
||||||
|
return version;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setVersion(String version) {
|
||||||
|
this.version = version;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getSupportLayouts() {
|
||||||
|
return supportLayouts;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setSupportLayouts(String supportLayouts) {
|
||||||
|
this.supportLayouts = supportLayouts;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getHideHint() {
|
||||||
|
return hideHint;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setHideHint(int hideHint) {
|
||||||
|
this.hideHint = hideHint;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getLayoutStyle() {
|
||||||
|
return layoutStyle;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setLayoutStyle(String layoutStyle) {
|
||||||
|
this.layoutStyle = layoutStyle;
|
||||||
|
}
|
||||||
|
|
||||||
|
public List<RespLayout> getLayouts() {
|
||||||
|
return layouts;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void addLayout(RespLayout layout) {
|
||||||
|
this.layouts.add(layout);
|
||||||
|
}
|
||||||
|
|
||||||
|
public List<KBModel> getKeyList() {
|
||||||
|
return KBModelList;
|
||||||
|
}
|
||||||
|
|
||||||
|
public KBModel getLastKeyList() {
|
||||||
|
return KBModelList.isEmpty() ? null : KBModelList.get(KBModelList.size() - 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void addKey(KBModel KBModel) {
|
||||||
|
this.KBModelList.add(KBModel);
|
||||||
|
}
|
||||||
|
|
||||||
|
public LinkedHashMap<String, String> getMaps() {
|
||||||
|
return maps;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setMaps(LinkedHashMap<String, String> maps) {
|
||||||
|
this.maps = maps;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getKeyDefault() {
|
||||||
|
return KeyDefault;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setKeyDefault(String keyDefault) {
|
||||||
|
KeyDefault = keyDefault;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getKeyMarkDefault() {
|
||||||
|
return KeyMarkDefault;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setKeyMarkDefault(String keyMarkDefault) {
|
||||||
|
KeyMarkDefault = keyMarkDefault;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getKeyFuncDefault() {
|
||||||
|
return KeyFuncDefault;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setKeyFuncDefault(String keyFuncDefault) {
|
||||||
|
KeyFuncDefault = keyFuncDefault;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getKeyShift() {
|
||||||
|
return KeyShift;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setKeyShift(String keyShift) {
|
||||||
|
KeyShift = keyShift;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getKeyDelete() {
|
||||||
|
return KeyDelete;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setKeyDelete(String keyDelete) {
|
||||||
|
KeyDelete = keyDelete;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getKeyAlphaSymbol() {
|
||||||
|
return KeyAlphaSymbol;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setKeyAlphaSymbol(String keyAlphaSymbol) {
|
||||||
|
KeyAlphaSymbol = keyAlphaSymbol;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getKeyEmoji() {
|
||||||
|
return KeyEmoji;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setKeyEmoji(String keyEmoji) {
|
||||||
|
KeyEmoji = keyEmoji;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getKeyMark() {
|
||||||
|
return KeyMark;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setKeyMark(String keyMark) {
|
||||||
|
KeyMark = keyMark;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getKeySpace() {
|
||||||
|
return KeySpace;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setKeySpace(String keySpace) {
|
||||||
|
KeySpace = keySpace;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getKeyEnter() {
|
||||||
|
return KeyEnter;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setKeyEnter(String keyEnter) {
|
||||||
|
KeyEnter = keyEnter;
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,35 @@
|
|||||||
|
package com.app.wave.keyboard.kbhelper;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
public class RespLayout {
|
||||||
|
private String name;
|
||||||
|
private List<KBModel> KBModels = new ArrayList<>();
|
||||||
|
|
||||||
|
|
||||||
|
public RespLayout(String name) {
|
||||||
|
this.name = name;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Getters and Setters
|
||||||
|
public String getName() {
|
||||||
|
return name;
|
||||||
|
}
|
||||||
|
|
||||||
|
public List<KBModel> getKeys() {
|
||||||
|
return KBModels;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void addKey(KBModel KBModel) {
|
||||||
|
this.KBModels.add(KBModel);
|
||||||
|
}
|
||||||
|
|
||||||
|
public KBModel getLastKey() {
|
||||||
|
return KBModels.isEmpty() ? null : KBModels.get(KBModels.size() - 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
858
app/src/main/java/com/app/wave/keyboard/sourcecode/KBCode.java
Normal file
@ -0,0 +1,858 @@
|
|||||||
|
package com.app.wave.keyboard.sourcecode;
|
||||||
|
|
||||||
|
import android.content.Context;
|
||||||
|
import android.content.res.Resources;
|
||||||
|
import android.content.res.TypedArray;
|
||||||
|
import android.content.res.XmlResourceParser;
|
||||||
|
import android.graphics.drawable.Drawable;
|
||||||
|
import android.text.TextUtils;
|
||||||
|
import android.util.DisplayMetrics;
|
||||||
|
import android.util.TypedValue;
|
||||||
|
import android.util.Xml;
|
||||||
|
|
||||||
|
import androidx.annotation.XmlRes;
|
||||||
|
|
||||||
|
import org.xmlpull.v1.XmlPullParserException;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.StringTokenizer;
|
||||||
|
|
||||||
|
|
||||||
|
import com.app.wave.keyboard.R;
|
||||||
|
|
||||||
|
public class KBCode {
|
||||||
|
|
||||||
|
static final String TAG = "------------Keyboard-----------";
|
||||||
|
|
||||||
|
// Keyboard XML Tags
|
||||||
|
private static final String TAG_KEYBOARD = "Keyboard";
|
||||||
|
private static final String TAG_ROW = "Row";
|
||||||
|
private static final String TAG_KEY = "Key";
|
||||||
|
|
||||||
|
public static final int EDGE_LEFT = 0x01;
|
||||||
|
public static final int EDGE_RIGHT = 0x02;
|
||||||
|
public static final int EDGE_TOP = 0x04;
|
||||||
|
public static final int EDGE_BOTTOM = 0x08;
|
||||||
|
|
||||||
|
public static final int KEYCODE_SHIFT = -1;
|
||||||
|
public static final int KEYCODE_MODE_CHANGE = -2;
|
||||||
|
public static final int KEYCODE_CANCEL = -3;
|
||||||
|
public static final int KEYCODE_DONE = -4;
|
||||||
|
public static final int KEYCODE_DELETE = -5;
|
||||||
|
public static final int KEYCODE_ALT = -6;
|
||||||
|
|
||||||
|
/** Keyboard label **/
|
||||||
|
private CharSequence mLabel;
|
||||||
|
|
||||||
|
/** Horizontal gap default for all rows */
|
||||||
|
private int mDefaultHorizontalGap;
|
||||||
|
|
||||||
|
/** Default key width */
|
||||||
|
private int mDefaultWidth;
|
||||||
|
|
||||||
|
/** Default key height */
|
||||||
|
private int mDefaultHeight;
|
||||||
|
|
||||||
|
/** Default gap between rows */
|
||||||
|
private int mDefaultVerticalGap;
|
||||||
|
|
||||||
|
/** Is the keyboard in the shifted state */
|
||||||
|
private boolean mShifted;
|
||||||
|
|
||||||
|
/** Key instance for the shift key, if present */
|
||||||
|
private KBCode.Key[] mShiftKeys = { null, null };
|
||||||
|
|
||||||
|
/** Key index for the shift key, if present */
|
||||||
|
private int[] mShiftKeyIndices = {-1, -1};
|
||||||
|
|
||||||
|
/** Current key width, while loading the keyboard */
|
||||||
|
private int mKeyWidth;
|
||||||
|
|
||||||
|
/** Current key height, while loading the keyboard */
|
||||||
|
private int mKeyHeight;
|
||||||
|
|
||||||
|
/** Total height of the keyboard, including the padding and keys */
|
||||||
|
private int mTotalHeight;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Total width of the keyboard, including left side gaps and keys, but not any gaps on the
|
||||||
|
* right side.
|
||||||
|
*/
|
||||||
|
private int mTotalWidth;
|
||||||
|
|
||||||
|
/** List of keys in this keyboard */
|
||||||
|
private List<KBCode.Key> mKeys;
|
||||||
|
|
||||||
|
/** List of modifier keys such as Shift & Alt, if any */
|
||||||
|
private List<KBCode.Key> mModifierKeys;
|
||||||
|
|
||||||
|
/** Width of the screen available to fit the keyboard */
|
||||||
|
private int mDisplayWidth;
|
||||||
|
|
||||||
|
/** Height of the screen */
|
||||||
|
private int mDisplayHeight;
|
||||||
|
|
||||||
|
/** Keyboard mode, or zero, if none. */
|
||||||
|
private int mKeyboardMode;
|
||||||
|
|
||||||
|
// Variables for pre-computing nearest keys.
|
||||||
|
|
||||||
|
private static final int GRID_WIDTH = 10;
|
||||||
|
private static final int GRID_HEIGHT = 5;
|
||||||
|
private static final int GRID_SIZE = GRID_WIDTH * GRID_HEIGHT;
|
||||||
|
private int mCellWidth;
|
||||||
|
private int mCellHeight;
|
||||||
|
private int[][] mGridNeighbors;
|
||||||
|
private int mProximityThreshold;
|
||||||
|
/** Number of key widths from current touch point to search for nearest keys. */
|
||||||
|
private static float SEARCH_DISTANCE = 1.8f;
|
||||||
|
|
||||||
|
private ArrayList<KBCode.Row> rows = new ArrayList<>();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Container for keys in the keyboard. All keys in a row are at the same Y-coordinate.
|
||||||
|
* Some of the key size defaults can be overridden per row from what the {@link KBCode}
|
||||||
|
* defines.
|
||||||
|
* @attr ref android.R.styleable#King_Keyboard_keyWidth
|
||||||
|
* @attr ref android.R.styleable#King_Keyboard_keyHeight
|
||||||
|
* @attr ref android.R.styleable#King_Keyboard_horizontalGap
|
||||||
|
* @attr ref android.R.styleable#King_Keyboard_verticalGap
|
||||||
|
* @attr ref android.R.styleable#King_Keyboard_Row_rowEdgeFlags
|
||||||
|
* @attr ref android.R.styleable#King_Keyboard_Row_keyboardMode
|
||||||
|
*/
|
||||||
|
public static class Row {
|
||||||
|
/** Default width of a key in this row. */
|
||||||
|
public int defaultWidth;
|
||||||
|
/** Default height of a key in this row. */
|
||||||
|
public int defaultHeight;
|
||||||
|
/** Default horizontal gap between keys in this row. */
|
||||||
|
public int defaultHorizontalGap;
|
||||||
|
/** Vertical gap following this row. */
|
||||||
|
public int verticalGap;
|
||||||
|
|
||||||
|
ArrayList<KBCode.Key> mKeys = new ArrayList<>();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Edge flags for this row of keys. Possible values that can be assigned are
|
||||||
|
* {@link KBCode#EDGE_TOP EDGE_TOP} and {@link KBCode#EDGE_BOTTOM EDGE_BOTTOM}
|
||||||
|
*/
|
||||||
|
public int rowEdgeFlags;
|
||||||
|
|
||||||
|
/** The keyboard mode for this row */
|
||||||
|
public int mode;
|
||||||
|
|
||||||
|
private KBCode parent;
|
||||||
|
|
||||||
|
public Row(KBCode parent) {
|
||||||
|
this.parent = parent;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Row(Resources res, KBCode parent, XmlResourceParser parser) {
|
||||||
|
this.parent = parent;
|
||||||
|
TypedArray a = res.obtainAttributes(Xml.asAttributeSet(parser),
|
||||||
|
R.styleable.My_Keyboard_view);
|
||||||
|
defaultWidth = getDimensionOrFraction(a,
|
||||||
|
R.styleable.My_Keyboard_view_android_keyWidth,
|
||||||
|
parent.mDisplayWidth, parent.mDefaultWidth);
|
||||||
|
defaultHeight = getDimensionOrFraction(a,
|
||||||
|
R.styleable.My_Keyboard_view_android_keyHeight,
|
||||||
|
parent.mDisplayHeight, parent.mDefaultHeight);
|
||||||
|
defaultHorizontalGap = getDimensionOrFraction(a,
|
||||||
|
R.styleable.My_Keyboard_view_android_horizontalGap,
|
||||||
|
parent.mDisplayWidth, parent.mDefaultHorizontalGap);
|
||||||
|
verticalGap = getDimensionOrFraction(a,
|
||||||
|
R.styleable.My_Keyboard_view_android_verticalGap,
|
||||||
|
parent.mDisplayHeight, parent.mDefaultVerticalGap);
|
||||||
|
a.recycle();
|
||||||
|
a = res.obtainAttributes(Xml.asAttributeSet(parser),
|
||||||
|
R.styleable.Kil_Keyboard_Row);
|
||||||
|
rowEdgeFlags = a.getInt(R.styleable.Kil_Keyboard_Row_android_rowEdgeFlags, 0);
|
||||||
|
mode = a.getResourceId(R.styleable.Kil_Keyboard_Row_android_keyboardMode,
|
||||||
|
0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class for describing the position and characteristics of a single key in the keyboard.
|
||||||
|
*
|
||||||
|
* @attr ref android.R.styleable#King_Keyboard_keyWidth
|
||||||
|
* @attr ref android.R.styleable#King_Keyboard_keyHeight
|
||||||
|
* @attr ref android.R.styleable#King_Keyboard_horizontalGap
|
||||||
|
* @attr ref android.R.styleable#King_Keyboard_Key_codes
|
||||||
|
* @attr ref android.R.styleable#King_Keyboard_Key_keyIcon
|
||||||
|
* @attr ref android.R.styleable#King_Keyboard_Key_keyLabel
|
||||||
|
* @attr ref android.R.styleable#King_Keyboard_Key_iconPreview
|
||||||
|
* @attr ref android.R.styleable#King_Keyboard_Key_isSticky
|
||||||
|
* @attr ref android.R.styleable#King_Keyboard_Key_isRepeatable
|
||||||
|
* @attr ref android.R.styleable#King_Keyboard_Key_isModifier
|
||||||
|
* @attr ref android.R.styleable#King_Keyboard_Key_popupKeyboard
|
||||||
|
* @attr ref android.R.styleable#King_Keyboard_Key_popupCharacters
|
||||||
|
* @attr ref android.R.styleable#King_Keyboard_Key_keyOutputText
|
||||||
|
* @attr ref android.R.styleable#King_Keyboard_Key_keyEdgeFlags
|
||||||
|
*/
|
||||||
|
public static class Key {
|
||||||
|
/**
|
||||||
|
* All the key codes (unicode or custom code) that this key could generate, zero'th
|
||||||
|
* being the most important.
|
||||||
|
*/
|
||||||
|
public int[] codes;
|
||||||
|
|
||||||
|
/** Label to display */
|
||||||
|
public CharSequence label;
|
||||||
|
|
||||||
|
/** Icon to display instead of a label. Icon takes precedence over a label */
|
||||||
|
public Drawable icon;
|
||||||
|
/** Preview version of the icon, for the preview popup */
|
||||||
|
public Drawable iconPreview;
|
||||||
|
/** Width of the key, not including the gap */
|
||||||
|
public int width;
|
||||||
|
/** Height of the key, not including the gap */
|
||||||
|
public int height;
|
||||||
|
/** The horizontal gap before this key */
|
||||||
|
public int gap;
|
||||||
|
/** Whether this key is sticky, i.e., a toggle key */
|
||||||
|
public boolean sticky;
|
||||||
|
/** X coordinate of the key in the keyboard layout */
|
||||||
|
public int x;
|
||||||
|
/** Y coordinate of the key in the keyboard layout */
|
||||||
|
public int y;
|
||||||
|
/** The current pressed state of this key */
|
||||||
|
public boolean pressed;
|
||||||
|
/** If this is a sticky key, is it on? */
|
||||||
|
public boolean on;
|
||||||
|
/** Text to output when pressed. This can be multiple characters, like ".com" */
|
||||||
|
public CharSequence text;
|
||||||
|
/** Popup characters */
|
||||||
|
public CharSequence popupCharacters;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Flags that specify the anchoring to edges of the keyboard for detecting touch events
|
||||||
|
* that are just out of the boundary of the key. This is a bit mask of
|
||||||
|
* {@link KBCode#EDGE_LEFT}, {@link KBCode#EDGE_RIGHT}, {@link KBCode#EDGE_TOP} and
|
||||||
|
* {@link KBCode#EDGE_BOTTOM}.
|
||||||
|
*/
|
||||||
|
public int edgeFlags;
|
||||||
|
/** Whether this is a modifier key, such as Shift or Alt */
|
||||||
|
public boolean modifier;
|
||||||
|
/** The keyboard that this key belongs to */
|
||||||
|
private KBCode keyboard;
|
||||||
|
/**
|
||||||
|
* If this key pops up a mini keyboard, this is the resource id for the XML layout for that
|
||||||
|
* keyboard.
|
||||||
|
*/
|
||||||
|
public int popupResId;
|
||||||
|
/** Whether this key repeats itself when held down */
|
||||||
|
public boolean repeatable;
|
||||||
|
|
||||||
|
|
||||||
|
private final static int[] KEY_STATE_NORMAL_ON = {
|
||||||
|
android.R.attr.state_checkable,
|
||||||
|
android.R.attr.state_checked
|
||||||
|
};
|
||||||
|
|
||||||
|
private final static int[] KEY_STATE_PRESSED_ON = {
|
||||||
|
android.R.attr.state_pressed,
|
||||||
|
android.R.attr.state_checkable,
|
||||||
|
android.R.attr.state_checked
|
||||||
|
};
|
||||||
|
|
||||||
|
private final static int[] KEY_STATE_NORMAL_OFF = {
|
||||||
|
android.R.attr.state_checkable
|
||||||
|
};
|
||||||
|
|
||||||
|
private final static int[] KEY_STATE_PRESSED_OFF = {
|
||||||
|
android.R.attr.state_pressed,
|
||||||
|
android.R.attr.state_checkable
|
||||||
|
};
|
||||||
|
|
||||||
|
private final static int[] KEY_STATE_NORMAL = {
|
||||||
|
};
|
||||||
|
|
||||||
|
private final static int[] KEY_STATE_PRESSED = {
|
||||||
|
android.R.attr.state_pressed
|
||||||
|
};
|
||||||
|
|
||||||
|
/** Create an empty key with no attributes. */
|
||||||
|
public Key(KBCode.Row parent) {
|
||||||
|
keyboard = parent.parent;
|
||||||
|
height = parent.defaultHeight;
|
||||||
|
width = parent.defaultWidth;
|
||||||
|
gap = parent.defaultHorizontalGap;
|
||||||
|
edgeFlags = parent.rowEdgeFlags;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Create a key with the given top-left coordinate and extract its attributes from
|
||||||
|
* the XML parser.
|
||||||
|
* @param res resources associated with the caller's context
|
||||||
|
* @param parent the row that this key belongs to. The row must already be attached to
|
||||||
|
* a {@link KBCode}.
|
||||||
|
* @param x the x coordinate of the top-left
|
||||||
|
* @param y the y coordinate of the top-left
|
||||||
|
* @param parser the XML parser containing the attributes for this key
|
||||||
|
*/
|
||||||
|
public Key(Resources res, KBCode.Row parent, int x, int y, XmlResourceParser parser) {
|
||||||
|
this(parent);
|
||||||
|
|
||||||
|
this.x = x;
|
||||||
|
this.y = y;
|
||||||
|
|
||||||
|
TypedArray a = res.obtainAttributes(Xml.asAttributeSet(parser),
|
||||||
|
R.styleable.My_Keyboard_view);
|
||||||
|
|
||||||
|
width = getDimensionOrFraction(a,
|
||||||
|
R.styleable.My_Keyboard_view_android_keyWidth,
|
||||||
|
keyboard.mDisplayWidth, parent.defaultWidth);
|
||||||
|
height = getDimensionOrFraction(a,
|
||||||
|
R.styleable.My_Keyboard_view_android_keyHeight,
|
||||||
|
keyboard.mDisplayHeight, parent.defaultHeight);
|
||||||
|
gap = getDimensionOrFraction(a,
|
||||||
|
R.styleable.My_Keyboard_view_android_horizontalGap,
|
||||||
|
keyboard.mDisplayWidth, parent.defaultHorizontalGap);
|
||||||
|
a.recycle();
|
||||||
|
a = res.obtainAttributes(Xml.asAttributeSet(parser),
|
||||||
|
R.styleable.K_Keyboard_Key);
|
||||||
|
this.x += gap;
|
||||||
|
TypedValue codesValue = new TypedValue();
|
||||||
|
a.getValue(R.styleable.K_Keyboard_Key_android_codes,
|
||||||
|
codesValue);
|
||||||
|
if (codesValue.type == TypedValue.TYPE_INT_DEC
|
||||||
|
|| codesValue.type == TypedValue.TYPE_INT_HEX) {
|
||||||
|
codes = new int[] { codesValue.data };
|
||||||
|
} else if (codesValue.type == TypedValue.TYPE_STRING) {
|
||||||
|
codes = parseCSV(codesValue.string.toString());
|
||||||
|
}
|
||||||
|
|
||||||
|
iconPreview = a.getDrawable(R.styleable.K_Keyboard_Key_android_iconPreview);
|
||||||
|
if (iconPreview != null) {
|
||||||
|
iconPreview.setBounds(0, 0, iconPreview.getIntrinsicWidth(),
|
||||||
|
iconPreview.getIntrinsicHeight());
|
||||||
|
}
|
||||||
|
popupCharacters = a.getText(
|
||||||
|
R.styleable.K_Keyboard_Key_android_popupCharacters);
|
||||||
|
popupResId = a.getResourceId(
|
||||||
|
R.styleable.K_Keyboard_Key_android_popupKeyboard, 0);
|
||||||
|
repeatable = a.getBoolean(
|
||||||
|
R.styleable.K_Keyboard_Key_android_isRepeatable, false);
|
||||||
|
modifier = a.getBoolean(
|
||||||
|
R.styleable.K_Keyboard_Key_android_isModifier, false);
|
||||||
|
sticky = a.getBoolean(
|
||||||
|
R.styleable.K_Keyboard_Key_android_isSticky, false);
|
||||||
|
edgeFlags = a.getInt(R.styleable.K_Keyboard_Key_android_keyEdgeFlags, 0);
|
||||||
|
edgeFlags |= parent.rowEdgeFlags;
|
||||||
|
|
||||||
|
icon = a.getDrawable(
|
||||||
|
R.styleable.K_Keyboard_Key_android_keyIcon);
|
||||||
|
if (icon != null) {
|
||||||
|
icon.setBounds(0, 0, icon.getIntrinsicWidth(), icon.getIntrinsicHeight());
|
||||||
|
}
|
||||||
|
label = a.getText(R.styleable.K_Keyboard_Key_android_keyLabel);
|
||||||
|
text = a.getText(R.styleable.K_Keyboard_Key_android_keyOutputText);
|
||||||
|
|
||||||
|
if (codes == null && !TextUtils.isEmpty(label)) {
|
||||||
|
codes = new int[] { label.charAt(0) };
|
||||||
|
}
|
||||||
|
a.recycle();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Informs the key that it has been pressed, in case it needs to change its appearance or
|
||||||
|
* state.
|
||||||
|
* @see #onReleased(boolean)
|
||||||
|
*/
|
||||||
|
public void onPressed() {
|
||||||
|
pressed = !pressed;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Changes the pressed state of the key.
|
||||||
|
*
|
||||||
|
* <p>Toggled state of the key will be flipped when all the following conditions are
|
||||||
|
* fulfilled:</p>
|
||||||
|
*
|
||||||
|
* <ul>
|
||||||
|
* <li>This is a sticky key, that is, {@link #sticky} is {@code true}.
|
||||||
|
* <li>The parameter {@code inside} is {@code true}.
|
||||||
|
* <li>{@link android.os.Build.VERSION#SDK_INT} is greater than
|
||||||
|
* {@link android.os.Build.VERSION_CODES#LOLLIPOP_MR1}.
|
||||||
|
* </ul>
|
||||||
|
*
|
||||||
|
* @param inside whether the finger was released inside the key. Works only on Android M and
|
||||||
|
* later. See the method document for details.
|
||||||
|
* @see #onPressed()
|
||||||
|
*/
|
||||||
|
public void onReleased(boolean inside) {
|
||||||
|
pressed = !pressed;
|
||||||
|
if (sticky && inside) {
|
||||||
|
on = !on;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
int[] parseCSV(String value) {
|
||||||
|
int count = 0;
|
||||||
|
int lastIndex = 0;
|
||||||
|
if (value.length() > 0) {
|
||||||
|
count++;
|
||||||
|
while ((lastIndex = value.indexOf(",", lastIndex + 1)) > 0) {
|
||||||
|
count++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
int[] values = new int[count];
|
||||||
|
count = 0;
|
||||||
|
StringTokenizer st = new StringTokenizer(value, ",");
|
||||||
|
while (st.hasMoreTokens()) {
|
||||||
|
try {
|
||||||
|
values[count++] = Integer.parseInt(st.nextToken());
|
||||||
|
} catch (NumberFormatException nfe) {
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return values;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Detects if a point falls inside this key.
|
||||||
|
* @param x the x-coordinate of the point
|
||||||
|
* @param y the y-coordinate of the point
|
||||||
|
* @return whether or not the point falls inside the key. If the key is attached to an edge,
|
||||||
|
* it will assume that all points between the key and the edge are considered to be inside
|
||||||
|
* the key.
|
||||||
|
*/
|
||||||
|
public boolean isInside(int x, int y) {
|
||||||
|
boolean leftEdge = (edgeFlags & EDGE_LEFT) > 0;
|
||||||
|
boolean rightEdge = (edgeFlags & EDGE_RIGHT) > 0;
|
||||||
|
boolean topEdge = (edgeFlags & EDGE_TOP) > 0;
|
||||||
|
boolean bottomEdge = (edgeFlags & EDGE_BOTTOM) > 0;
|
||||||
|
if ((x >= this.x || (leftEdge && x <= this.x + this.width))
|
||||||
|
&& (x < this.x + this.width || (rightEdge && x >= this.x))
|
||||||
|
&& (y >= this.y || (topEdge && y <= this.y + this.height))
|
||||||
|
&& (y < this.y + this.height || (bottomEdge && y >= this.y))) {
|
||||||
|
return true;
|
||||||
|
} else {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the square of the distance between the center of the key and the given point.
|
||||||
|
* @param x the x-coordinate of the point
|
||||||
|
* @param y the y-coordinate of the point
|
||||||
|
* @return the square of the distance of the point from the center of the key
|
||||||
|
*/
|
||||||
|
public int squaredDistanceFrom(int x, int y) {
|
||||||
|
int xDist = this.x + width / 2 - x;
|
||||||
|
int yDist = this.y + height / 2 - y;
|
||||||
|
return xDist * xDist + yDist * yDist;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the drawable state for the key, based on the current state and type of the key.
|
||||||
|
* @return the drawable state of the key.
|
||||||
|
* @see android.graphics.drawable.StateListDrawable#setState(int[])
|
||||||
|
*/
|
||||||
|
public int[] getCurrentDrawableState() {
|
||||||
|
int[] states = KEY_STATE_NORMAL;
|
||||||
|
|
||||||
|
if (on) {
|
||||||
|
if (pressed) {
|
||||||
|
states = KEY_STATE_PRESSED_ON;
|
||||||
|
} else {
|
||||||
|
states = KEY_STATE_NORMAL_ON;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if (sticky) {
|
||||||
|
if (pressed) {
|
||||||
|
states = KEY_STATE_PRESSED_OFF;
|
||||||
|
} else {
|
||||||
|
states = KEY_STATE_NORMAL_OFF;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if (pressed) {
|
||||||
|
states = KEY_STATE_PRESSED;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return states;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates a keyboard from the given xml key layout file.
|
||||||
|
* @param context the application or service context
|
||||||
|
* @param xmlLayoutResId the resource file that contains the keyboard layout and keys.
|
||||||
|
*/
|
||||||
|
public KBCode(Context context, int xmlLayoutResId) {
|
||||||
|
this(context, xmlLayoutResId, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates a keyboard from the given xml key layout file. Weeds out rows
|
||||||
|
* that have a keyboard mode defined but don't match the specified mode.
|
||||||
|
* @param context the application or service context
|
||||||
|
* @param xmlLayoutResId the resource file that contains the keyboard layout and keys.
|
||||||
|
* @param modeId keyboard mode identifier
|
||||||
|
* @param width sets width of keyboard
|
||||||
|
* @param height sets height of keyboard
|
||||||
|
*/
|
||||||
|
public KBCode(Context context, @XmlRes int xmlLayoutResId, int modeId, int width,
|
||||||
|
int height) {
|
||||||
|
mDisplayWidth = width;
|
||||||
|
mDisplayHeight = height;
|
||||||
|
|
||||||
|
mDefaultHorizontalGap = 0;
|
||||||
|
mDefaultWidth = mDisplayWidth / 10;
|
||||||
|
mDefaultVerticalGap = 0;
|
||||||
|
mDefaultHeight = mDefaultWidth;
|
||||||
|
mKeys = new ArrayList<>();
|
||||||
|
mModifierKeys = new ArrayList<>();
|
||||||
|
mKeyboardMode = modeId;
|
||||||
|
loadKeyboard(context, context.getResources().getXml(xmlLayoutResId));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates a keyboard from the given xml key layout file. Weeds out rows
|
||||||
|
* that have a keyboard mode defined but don't match the specified mode.
|
||||||
|
* @param context the application or service context
|
||||||
|
* @param xmlLayoutResId the resource file that contains the keyboard layout and keys.
|
||||||
|
* @param modeId keyboard mode identifier
|
||||||
|
*/
|
||||||
|
public KBCode(Context context, @XmlRes int xmlLayoutResId, int modeId) {
|
||||||
|
DisplayMetrics dm = context.getResources().getDisplayMetrics();
|
||||||
|
mDisplayWidth = dm.widthPixels;
|
||||||
|
mDisplayHeight = dm.heightPixels;
|
||||||
|
//Log.v(TAG, "keyboard's display metrics:" + dm);
|
||||||
|
|
||||||
|
mDefaultHorizontalGap = 0;
|
||||||
|
mDefaultWidth = mDisplayWidth / 10;
|
||||||
|
mDefaultVerticalGap = 0;
|
||||||
|
mDefaultHeight = mDefaultWidth;
|
||||||
|
mKeys = new ArrayList<>();
|
||||||
|
mModifierKeys = new ArrayList<>();
|
||||||
|
mKeyboardMode = modeId;
|
||||||
|
loadKeyboard(context, context.getResources().getXml(xmlLayoutResId));
|
||||||
|
}
|
||||||
|
|
||||||
|
public KBCode(Context context, int layoutTemplateResId,
|
||||||
|
CharSequence characters, int columns, int horizontalPadding) {
|
||||||
|
this(context, layoutTemplateResId);
|
||||||
|
int x = 0;
|
||||||
|
int y = 0;
|
||||||
|
int column = 0;
|
||||||
|
mTotalWidth = 0;
|
||||||
|
|
||||||
|
KBCode.Row row = new KBCode.Row(this);
|
||||||
|
row.defaultHeight = mDefaultHeight;
|
||||||
|
row.defaultWidth = mDefaultWidth;
|
||||||
|
row.defaultHorizontalGap = mDefaultHorizontalGap;
|
||||||
|
row.verticalGap = mDefaultVerticalGap;
|
||||||
|
row.rowEdgeFlags = EDGE_TOP | EDGE_BOTTOM;
|
||||||
|
final int maxColumns = columns == -1 ? Integer.MAX_VALUE : columns;
|
||||||
|
for (int i = 0; i < characters.length(); i++) {
|
||||||
|
char c = characters.charAt(i);
|
||||||
|
if (column >= maxColumns
|
||||||
|
|| x + mDefaultWidth + horizontalPadding > mDisplayWidth) {
|
||||||
|
x = 0;
|
||||||
|
y += mDefaultVerticalGap + mDefaultHeight;
|
||||||
|
column = 0;
|
||||||
|
}
|
||||||
|
final KBCode.Key key = new KBCode.Key(row);
|
||||||
|
key.x = x;
|
||||||
|
key.y = y;
|
||||||
|
key.label = String.valueOf(c);
|
||||||
|
key.codes = new int[] { c };
|
||||||
|
column++;
|
||||||
|
x += key.width + key.gap;
|
||||||
|
mKeys.add(key);
|
||||||
|
row.mKeys.add(key);
|
||||||
|
if (x > mTotalWidth) {
|
||||||
|
mTotalWidth = x;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
mTotalHeight = y + mDefaultHeight;
|
||||||
|
rows.add(row);
|
||||||
|
}
|
||||||
|
|
||||||
|
final void resize(int newWidth, int newHeight) {
|
||||||
|
int numRows = rows.size();
|
||||||
|
for (int rowIndex = 0; rowIndex < numRows; ++rowIndex) {
|
||||||
|
KBCode.Row row = rows.get(rowIndex);
|
||||||
|
int numKeys = row.mKeys.size();
|
||||||
|
int totalGap = 0;
|
||||||
|
int totalWidth = 0;
|
||||||
|
for (int keyIndex = 0; keyIndex < numKeys; ++keyIndex) {
|
||||||
|
KBCode.Key key = row.mKeys.get(keyIndex);
|
||||||
|
if (keyIndex > 0) {
|
||||||
|
totalGap += key.gap;
|
||||||
|
}
|
||||||
|
totalWidth += key.width;
|
||||||
|
}
|
||||||
|
if (totalGap + totalWidth > newWidth) {
|
||||||
|
int x = 0;
|
||||||
|
float scaleFactor = (float)(newWidth - totalGap) / totalWidth;
|
||||||
|
for (int keyIndex = 0; keyIndex < numKeys; ++keyIndex) {
|
||||||
|
KBCode.Key key = row.mKeys.get(keyIndex);
|
||||||
|
key.width *= scaleFactor;
|
||||||
|
key.x = x;
|
||||||
|
x += key.width + key.gap;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
mTotalWidth = newWidth;
|
||||||
|
// TODO: This does not adjust the vertical placement according to the new size.
|
||||||
|
// The main problem in the previous code was horizontal placement/size, but we should
|
||||||
|
// also recalculate the vertical sizes/positions when we get this resize call.
|
||||||
|
}
|
||||||
|
|
||||||
|
public List<KBCode.Key> getKeys() {
|
||||||
|
return mKeys;
|
||||||
|
}
|
||||||
|
|
||||||
|
public List<KBCode.Key> getModifierKeys() {
|
||||||
|
return mModifierKeys;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected int getHorizontalGap() {
|
||||||
|
return mDefaultHorizontalGap;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected void setHorizontalGap(int gap) {
|
||||||
|
mDefaultHorizontalGap = gap;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected int getVerticalGap() {
|
||||||
|
return mDefaultVerticalGap;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected void setVerticalGap(int gap) {
|
||||||
|
mDefaultVerticalGap = gap;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected int getKeyHeight() {
|
||||||
|
return mDefaultHeight;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected void setKeyHeight(int height) {
|
||||||
|
mDefaultHeight = height;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected int getKeyWidth() {
|
||||||
|
return mDefaultWidth;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected void setKeyWidth(int width) {
|
||||||
|
mDefaultWidth = width;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the total height of the keyboard
|
||||||
|
* @return the total height of the keyboard
|
||||||
|
*/
|
||||||
|
public int getHeight() {
|
||||||
|
return mTotalHeight;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getMinWidth() {
|
||||||
|
return mTotalWidth;
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean setShifted(boolean shiftState) {
|
||||||
|
for (KBCode.Key shiftKey : mShiftKeys) {
|
||||||
|
if (shiftKey != null) {
|
||||||
|
shiftKey.on = shiftState;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (mShifted != shiftState) {
|
||||||
|
mShifted = shiftState;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean isShifted() {
|
||||||
|
return mShifted;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @hide
|
||||||
|
*/
|
||||||
|
public int[] getShiftKeyIndices() {
|
||||||
|
return mShiftKeyIndices;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getShiftKeyIndex() {
|
||||||
|
return mShiftKeyIndices[0];
|
||||||
|
}
|
||||||
|
|
||||||
|
private void computeNearestNeighbors() {
|
||||||
|
// Round-up so we don't have any pixels outside the grid
|
||||||
|
mCellWidth = (getMinWidth() + GRID_WIDTH - 1) / GRID_WIDTH;
|
||||||
|
mCellHeight = (getHeight() + GRID_HEIGHT - 1) / GRID_HEIGHT;
|
||||||
|
mGridNeighbors = new int[GRID_SIZE][];
|
||||||
|
int[] indices = new int[mKeys.size()];
|
||||||
|
final int gridWidth = GRID_WIDTH * mCellWidth;
|
||||||
|
final int gridHeight = GRID_HEIGHT * mCellHeight;
|
||||||
|
for (int x = 0; x < gridWidth; x += mCellWidth) {
|
||||||
|
for (int y = 0; y < gridHeight; y += mCellHeight) {
|
||||||
|
int count = 0;
|
||||||
|
for (int i = 0; i < mKeys.size(); i++) {
|
||||||
|
final KBCode.Key key = mKeys.get(i);
|
||||||
|
if (key.squaredDistanceFrom(x, y) < mProximityThreshold ||
|
||||||
|
key.squaredDistanceFrom(x + mCellWidth - 1, y) < mProximityThreshold ||
|
||||||
|
key.squaredDistanceFrom(x + mCellWidth - 1, y + mCellHeight - 1)
|
||||||
|
< mProximityThreshold ||
|
||||||
|
key.squaredDistanceFrom(x, y + mCellHeight - 1) < mProximityThreshold) {
|
||||||
|
indices[count++] = i;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
int [] cell = new int[count];
|
||||||
|
System.arraycopy(indices, 0, cell, 0, count);
|
||||||
|
mGridNeighbors[(y / mCellHeight) * GRID_WIDTH + (x / mCellWidth)] = cell;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the indices of the keys that are closest to the given point.
|
||||||
|
* @param x the x-coordinate of the point
|
||||||
|
* @param y the y-coordinate of the point
|
||||||
|
* @return the array of integer indices for the nearest keys to the given point. If the given
|
||||||
|
* point is out of range, then an array of size zero is returned.
|
||||||
|
*/
|
||||||
|
public int[] getNearestKeys(int x, int y) {
|
||||||
|
if (mGridNeighbors == null) computeNearestNeighbors();
|
||||||
|
if (x >= 0 && x < getMinWidth() && y >= 0 && y < getHeight()) {
|
||||||
|
int index = (y / mCellHeight) * GRID_WIDTH + (x / mCellWidth);
|
||||||
|
if (index < GRID_SIZE) {
|
||||||
|
return mGridNeighbors[index];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return new int[0];
|
||||||
|
}
|
||||||
|
|
||||||
|
protected KBCode.Row createRowFromXml(Resources res, XmlResourceParser parser) {
|
||||||
|
return new KBCode.Row(res, this, parser);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected KBCode.Key createKeyFromXml(Resources res, KBCode.Row parent, int x, int y,
|
||||||
|
XmlResourceParser parser) {
|
||||||
|
return new KBCode.Key(res, parent, x, y, parser);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void loadKeyboard(Context context, XmlResourceParser parser) {
|
||||||
|
boolean inKey = false;
|
||||||
|
boolean inRow = false;
|
||||||
|
boolean leftMostKey = false;
|
||||||
|
int row = 0;
|
||||||
|
int x = 0;
|
||||||
|
int y = 0;
|
||||||
|
KBCode.Key key = null;
|
||||||
|
KBCode.Row currentRow = null;
|
||||||
|
Resources res = context.getResources();
|
||||||
|
boolean skipRow = false;
|
||||||
|
|
||||||
|
try {
|
||||||
|
int event;
|
||||||
|
while ((event = parser.next()) != XmlResourceParser.END_DOCUMENT) {
|
||||||
|
if (event == XmlResourceParser.START_TAG) {
|
||||||
|
String tag = parser.getName();
|
||||||
|
if (TAG_ROW.equals(tag)) {
|
||||||
|
inRow = true;
|
||||||
|
x = 0;
|
||||||
|
currentRow = createRowFromXml(res, parser);
|
||||||
|
rows.add(currentRow);
|
||||||
|
skipRow = currentRow.mode != 0 && currentRow.mode != mKeyboardMode;
|
||||||
|
if (skipRow) {
|
||||||
|
skipToEndOfRow(parser);
|
||||||
|
inRow = false;
|
||||||
|
}
|
||||||
|
} else if (TAG_KEY.equals(tag)) {
|
||||||
|
inKey = true;
|
||||||
|
key = createKeyFromXml(res, currentRow, x, y, parser);
|
||||||
|
mKeys.add(key);
|
||||||
|
if (key.codes[0] == KEYCODE_SHIFT) {
|
||||||
|
// Find available shift key slot and put this shift key in it
|
||||||
|
for (int i = 0; i < mShiftKeys.length; i++) {
|
||||||
|
if (mShiftKeys[i] == null) {
|
||||||
|
mShiftKeys[i] = key;
|
||||||
|
mShiftKeyIndices[i] = mKeys.size()-1;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
mModifierKeys.add(key);
|
||||||
|
} else if (key.codes[0] == KEYCODE_ALT) {
|
||||||
|
mModifierKeys.add(key);
|
||||||
|
}
|
||||||
|
currentRow.mKeys.add(key);
|
||||||
|
} else if (TAG_KEYBOARD.equals(tag)) {
|
||||||
|
parseKeyboardAttributes(res, parser);
|
||||||
|
}
|
||||||
|
} else if (event == XmlResourceParser.END_TAG) {
|
||||||
|
if (inKey) {
|
||||||
|
inKey = false;
|
||||||
|
x += key.gap + key.width;
|
||||||
|
if (x > mTotalWidth) {
|
||||||
|
mTotalWidth = x;
|
||||||
|
}
|
||||||
|
} else if (inRow) {
|
||||||
|
inRow = false;
|
||||||
|
y += currentRow.verticalGap;
|
||||||
|
y += currentRow.defaultHeight;
|
||||||
|
row++;
|
||||||
|
} else {
|
||||||
|
// TODO: error or extend?
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (Exception e) {
|
||||||
|
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
mTotalHeight = y - mDefaultVerticalGap;
|
||||||
|
}
|
||||||
|
|
||||||
|
private void skipToEndOfRow(XmlResourceParser parser)
|
||||||
|
throws XmlPullParserException, IOException {
|
||||||
|
int event;
|
||||||
|
while ((event = parser.next()) != XmlResourceParser.END_DOCUMENT) {
|
||||||
|
if (event == XmlResourceParser.END_TAG
|
||||||
|
&& parser.getName().equals(TAG_ROW)) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void parseKeyboardAttributes(Resources res, XmlResourceParser parser) {
|
||||||
|
TypedArray a = res.obtainAttributes(Xml.asAttributeSet(parser),
|
||||||
|
R.styleable.My_Keyboard_view);
|
||||||
|
|
||||||
|
mDefaultWidth = getDimensionOrFraction(a,
|
||||||
|
R.styleable.My_Keyboard_view_android_keyWidth,
|
||||||
|
mDisplayWidth, mDisplayWidth / 10);
|
||||||
|
mDefaultHeight = getDimensionOrFraction(a,
|
||||||
|
R.styleable.My_Keyboard_view_android_keyHeight,
|
||||||
|
mDisplayHeight, 50);
|
||||||
|
mDefaultHorizontalGap = getDimensionOrFraction(a,
|
||||||
|
R.styleable.My_Keyboard_view_android_horizontalGap,
|
||||||
|
mDisplayWidth, 0);
|
||||||
|
mDefaultVerticalGap = getDimensionOrFraction(a,
|
||||||
|
R.styleable.My_Keyboard_view_android_verticalGap,
|
||||||
|
mDisplayHeight, 0);
|
||||||
|
mProximityThreshold = (int) (mDefaultWidth * SEARCH_DISTANCE);
|
||||||
|
mProximityThreshold = mProximityThreshold * mProximityThreshold; // Square it for comparison
|
||||||
|
a.recycle();
|
||||||
|
}
|
||||||
|
|
||||||
|
static int getDimensionOrFraction(TypedArray a, int index, int base, int defValue) {
|
||||||
|
TypedValue value = a.peekValue(index);
|
||||||
|
if (value == null) return defValue;
|
||||||
|
if (value.type == TypedValue.TYPE_DIMENSION) {
|
||||||
|
return a.getDimensionPixelOffset(index, defValue);
|
||||||
|
} else if (value.type == TypedValue.TYPE_FRACTION) {
|
||||||
|
// Round it to avoid values like 47.9999 from getting truncated
|
||||||
|
return Math.round(a.getFraction(index, base, base, defValue));
|
||||||
|
}
|
||||||
|
return defValue;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
1386
app/src/main/java/com/app/wave/keyboard/sourcecode/KBCodeView.java
Normal file
201
app/src/main/java/com/app/wave/keyboard/ui/ApplyActivity.java
Normal file
@ -0,0 +1,201 @@
|
|||||||
|
package com.app.wave.keyboard.ui;
|
||||||
|
|
||||||
|
|
||||||
|
import android.content.Context;
|
||||||
|
import android.graphics.Rect;
|
||||||
|
import android.graphics.Typeface;
|
||||||
|
import android.graphics.drawable.Drawable;
|
||||||
|
import android.os.Build;
|
||||||
|
import android.os.Bundle;
|
||||||
|
import android.os.Handler;
|
||||||
|
import android.util.Log;
|
||||||
|
import android.view.View;
|
||||||
|
import android.view.ViewGroup;
|
||||||
|
import android.view.ViewTreeObserver;
|
||||||
|
import android.view.WindowManager;
|
||||||
|
import android.view.inputmethod.InputMethodManager;
|
||||||
|
import android.widget.RelativeLayout;
|
||||||
|
|
||||||
|
import androidx.activity.EdgeToEdge;
|
||||||
|
import androidx.annotation.Nullable;
|
||||||
|
import androidx.appcompat.app.AppCompatActivity;
|
||||||
|
import androidx.core.graphics.Insets;
|
||||||
|
import androidx.core.view.ViewCompat;
|
||||||
|
import androidx.core.view.WindowInsetsCompat;
|
||||||
|
|
||||||
|
import com.app.wave.keyboard.R;
|
||||||
|
import com.app.wave.keyboard.databinding.ActivityApplyBinding;
|
||||||
|
import com.app.wave.keyboard.utils.MyKeyName;
|
||||||
|
import com.app.wave.keyboard.utils.Comutils;
|
||||||
|
import com.app.wave.keyboard.utils.FastBlurUtil;
|
||||||
|
import com.app.wave.keyboard.utils.SavePresentKB;
|
||||||
|
|
||||||
|
|
||||||
|
public class ApplyActivity extends AppCompatActivity {
|
||||||
|
private ActivityApplyBinding vb;
|
||||||
|
public static String key_name = "key_name";
|
||||||
|
private int mPreviousKeyboardHeight = -1;
|
||||||
|
private Drawable blurBackground;
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void onCreate(@Nullable Bundle savedInstanceState) {
|
||||||
|
super.onCreate(savedInstanceState);
|
||||||
|
vb = ActivityApplyBinding.inflate(getLayoutInflater());
|
||||||
|
EdgeToEdge.enable(this);
|
||||||
|
setContentView(vb.getRoot());
|
||||||
|
ViewCompat.setOnApplyWindowInsetsListener(findViewById(R.id.main), (v, insets) -> {
|
||||||
|
Insets systemBars = insets.getInsets(WindowInsetsCompat.Type.systemBars());
|
||||||
|
v.setPadding(systemBars.left, systemBars.top, systemBars.right, systemBars.bottom);
|
||||||
|
return insets;
|
||||||
|
});
|
||||||
|
|
||||||
|
onInit();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void onDestroy() {
|
||||||
|
super.onDestroy();
|
||||||
|
// 清理资源
|
||||||
|
blurBackground = null;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void onInit() {
|
||||||
|
String stringExtra = getIntent().getStringExtra(key_name);
|
||||||
|
vb.title.setText(stringExtra);
|
||||||
|
vb.title.setTypeface(vb.title.getTypeface(), Typeface.BOLD);
|
||||||
|
String curPath = SavePresentKB.INSTANCE.getSkinPath();
|
||||||
|
|
||||||
|
vb.idBack.setOnClickListener(new View.OnClickListener() {
|
||||||
|
@Override
|
||||||
|
public void onClick(View v) {
|
||||||
|
finish();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
if (curPath == null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
String bgPath = curPath + "res/drawable-xxhdpi-v4/" + MyKeyName.previewBg;
|
||||||
|
|
||||||
|
Drawable bgDraw = Comutils.INSTANCE.getBgDrawable(this, bgPath);
|
||||||
|
if (bgDraw != null) {
|
||||||
|
// 使用FastBlur进行模糊处理
|
||||||
|
applyBlurBackground(bgDraw);
|
||||||
|
}
|
||||||
|
|
||||||
|
keyboardheight();
|
||||||
|
setupEditText();
|
||||||
|
vb.et.requestFocus();
|
||||||
|
|
||||||
|
// 针对不同 API 设置不同的软键盘模式
|
||||||
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.R) {
|
||||||
|
// API 30+
|
||||||
|
getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE);
|
||||||
|
} else {
|
||||||
|
getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);
|
||||||
|
}
|
||||||
|
|
||||||
|
// 延迟显示键盘
|
||||||
|
showKeyboardWithDelay();
|
||||||
|
}
|
||||||
|
private void setupEditText() {
|
||||||
|
// 设置焦点监听
|
||||||
|
vb.et.setOnFocusChangeListener(new View.OnFocusChangeListener() {
|
||||||
|
@Override
|
||||||
|
public void onFocusChange(View v, boolean hasFocus) {
|
||||||
|
if (hasFocus) {
|
||||||
|
showKeyboard();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// 设置点击监听
|
||||||
|
vb.et.setOnClickListener(new View.OnClickListener() {
|
||||||
|
@Override
|
||||||
|
public void onClick(View v) {
|
||||||
|
showKeyboard();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
private void showKeyboard() {
|
||||||
|
InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
|
||||||
|
if (imm != null) {
|
||||||
|
imm.showSoftInput(vb.et, InputMethodManager.SHOW_IMPLICIT);
|
||||||
|
new Handler().postDelayed(new Runnable() {
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
|
if (!isKeyboardVisible()) {
|
||||||
|
// 方法2:尝试强制显示
|
||||||
|
imm.toggleSoftInput(InputMethodManager.SHOW_FORCED, 0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}, 200);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void showKeyboardWithDelay() {
|
||||||
|
new Handler().postDelayed(new Runnable() {
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
|
if (!isKeyboardVisible()) {
|
||||||
|
showKeyboard();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}, 300);
|
||||||
|
}
|
||||||
|
|
||||||
|
private boolean isKeyboardVisible() {
|
||||||
|
InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
|
||||||
|
return imm != null && imm.isActive(vb.et);
|
||||||
|
}
|
||||||
|
private void applyBlurBackground(Drawable originalDrawable) {
|
||||||
|
// 在子线程中进行模糊处理,避免阻塞UI
|
||||||
|
new Thread(() -> {
|
||||||
|
try {
|
||||||
|
// 使用FastBlur进行模糊
|
||||||
|
Drawable blurredDrawable = FastBlurUtil.blurDrawable(originalDrawable, 15, this);
|
||||||
|
|
||||||
|
runOnUiThread(() -> {
|
||||||
|
if (blurredDrawable != null) {
|
||||||
|
blurBackground = blurredDrawable;
|
||||||
|
vb.main.setBackground(blurredDrawable);
|
||||||
|
} else {
|
||||||
|
// 如果模糊失败,使用原始背景
|
||||||
|
vb.main.setBackground(originalDrawable);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
} catch (Exception e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
runOnUiThread(() -> {
|
||||||
|
// 异常情况下使用原始背景
|
||||||
|
vb.main.setBackground(originalDrawable);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}).start();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void keyboardheight() {
|
||||||
|
final View rootView = getWindow().getDecorView();
|
||||||
|
rootView.getViewTreeObserver().addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() {
|
||||||
|
@Override
|
||||||
|
public void onGlobalLayout() {
|
||||||
|
Rect r = new Rect();
|
||||||
|
rootView.getWindowVisibleDisplayFrame(r);
|
||||||
|
int screenHeight = rootView.getRootView().getHeight();
|
||||||
|
int keypadHeight = screenHeight - r.bottom;
|
||||||
|
|
||||||
|
if (keypadHeight != mPreviousKeyboardHeight) {
|
||||||
|
if (mPreviousKeyboardHeight < keypadHeight) {
|
||||||
|
mPreviousKeyboardHeight = keypadHeight;
|
||||||
|
ViewGroup.MarginLayoutParams params = (ViewGroup.MarginLayoutParams) vb.et.getLayoutParams();
|
||||||
|
params.bottomMargin = mPreviousKeyboardHeight;
|
||||||
|
vb.et.setLayoutParams(params);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
126
app/src/main/java/com/app/wave/keyboard/ui/CollectionFragment.kt
Normal file
@ -0,0 +1,126 @@
|
|||||||
|
package com.app.wave.keyboard.ui
|
||||||
|
|
||||||
|
import android.os.Bundle
|
||||||
|
import android.util.Log
|
||||||
|
import android.view.LayoutInflater
|
||||||
|
import android.view.View
|
||||||
|
import android.view.ViewGroup
|
||||||
|
import androidx.fragment.app.Fragment
|
||||||
|
import androidx.lifecycle.lifecycleScope
|
||||||
|
import androidx.recyclerview.widget.GridLayoutManager
|
||||||
|
import com.app.wave.keyboard.App
|
||||||
|
import com.app.wave.keyboard.R
|
||||||
|
import com.app.wave.keyboard.bean.DetailsBean
|
||||||
|
import com.app.wave.keyboard.databinding.FragmentCollectionBinding
|
||||||
|
import com.app.wave.keyboard.database.BaseDB
|
||||||
|
import com.app.wave.keyboard.database.DBManager
|
||||||
|
import com.app.wave.keyboard.callback.RemoveCallback
|
||||||
|
import com.app.wave.keyboard.adapter.CollectionAdapter
|
||||||
|
import kotlinx.coroutines.launch
|
||||||
|
|
||||||
|
class CollectionFragment : Fragment() {
|
||||||
|
|
||||||
|
private lateinit var vb: FragmentCollectionBinding
|
||||||
|
private lateinit var adapter: CollectionAdapter
|
||||||
|
|
||||||
|
companion object {
|
||||||
|
@JvmStatic
|
||||||
|
fun newInstance() = CollectionFragment()
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onCreateView(
|
||||||
|
inflater: LayoutInflater, container: ViewGroup?,
|
||||||
|
savedInstanceState: Bundle?
|
||||||
|
): View {
|
||||||
|
vb = FragmentCollectionBinding.inflate(inflater, container, false)
|
||||||
|
return vb.root
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
|
||||||
|
super.onViewCreated(view, savedInstanceState)
|
||||||
|
init()
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun init() {
|
||||||
|
// 初始化适配器
|
||||||
|
adapter = CollectionAdapter(requireContext()).apply {
|
||||||
|
setRemoveLike(object : RemoveCallback {
|
||||||
|
override fun OnRemoveLike(data: DetailsBean) {
|
||||||
|
lifecycleScope.launch {
|
||||||
|
DBManager.removeLike(data)
|
||||||
|
// 简单提示
|
||||||
|
android.widget.Toast.makeText(
|
||||||
|
requireContext(),
|
||||||
|
"Removed from favorites",
|
||||||
|
android.widget.Toast.LENGTH_SHORT
|
||||||
|
).show()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 设置RecyclerView
|
||||||
|
vb.likeRecycler.run {
|
||||||
|
adapter = this@CollectionFragment.adapter
|
||||||
|
layoutManager = GridLayoutManager(requireContext(), 2)
|
||||||
|
}
|
||||||
|
|
||||||
|
// 观察收藏数据变化
|
||||||
|
BaseDB.baseDB.ThemesDao().queryAllLike().observe(viewLifecycleOwner) { favoriteList ->
|
||||||
|
Log.d(App.TAG, "Collection size: ${favoriteList?.size}")
|
||||||
|
|
||||||
|
if (favoriteList.isNullOrEmpty()) {
|
||||||
|
// 显示空状态
|
||||||
|
showEmptyState()
|
||||||
|
} else {
|
||||||
|
// 显示收藏列表
|
||||||
|
showCollectionList(favoriteList as List<DetailsBean>)
|
||||||
|
|
||||||
|
// 更新收藏数量显示
|
||||||
|
updateFavoriteCountDisplay(favoriteList.size)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun showEmptyState() {
|
||||||
|
// 隐藏收藏列表
|
||||||
|
vb.likeRecycler.visibility = View.GONE
|
||||||
|
|
||||||
|
// 隐藏收藏数量显示
|
||||||
|
vb.textFavoriteCountContainer.visibility = View.GONE
|
||||||
|
|
||||||
|
// 显示空状态布局
|
||||||
|
val emptyContainer = vb.root.findViewById<View>(R.id.empty_container)
|
||||||
|
emptyContainer?.visibility = View.VISIBLE
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun showCollectionList(favoriteList: List<DetailsBean>) {
|
||||||
|
// 显示收藏列表
|
||||||
|
vb.likeRecycler.visibility = View.VISIBLE
|
||||||
|
|
||||||
|
// 隐藏空状态
|
||||||
|
val emptyContainer = vb.root.findViewById<View>(R.id.empty_container)
|
||||||
|
emptyContainer?.visibility = View.GONE
|
||||||
|
|
||||||
|
// 更新适配器数据
|
||||||
|
adapter.setForYouList(favoriteList)
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun updateFavoriteCountDisplay(count: Int) {
|
||||||
|
if (count > 0) {
|
||||||
|
// 显示收藏数量容器
|
||||||
|
vb.textFavoriteCountContainer.visibility = View.VISIBLE
|
||||||
|
|
||||||
|
// 更新数量文本
|
||||||
|
val countText = when (count) {
|
||||||
|
1 -> "1 keyboard collected"
|
||||||
|
else -> "$count keyboards collected"
|
||||||
|
}
|
||||||
|
vb.textFavoriteCount.text = countText
|
||||||
|
} else {
|
||||||
|
// 隐藏收藏数量容器
|
||||||
|
vb.textFavoriteCountContainer.visibility = View.GONE
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
230
app/src/main/java/com/app/wave/keyboard/ui/HomepageFragment.kt
Normal file
@ -0,0 +1,230 @@
|
|||||||
|
package com.app.wave.keyboard.ui
|
||||||
|
|
||||||
|
import android.content.Context
|
||||||
|
import android.content.Intent
|
||||||
|
import android.graphics.Rect
|
||||||
|
import android.graphics.Typeface
|
||||||
|
import android.os.Bundle
|
||||||
|
import android.view.LayoutInflater
|
||||||
|
import android.view.View
|
||||||
|
import android.view.ViewGroup
|
||||||
|
import androidx.fragment.app.Fragment
|
||||||
|
import androidx.recyclerview.widget.LinearLayoutManager
|
||||||
|
import androidx.recyclerview.widget.RecyclerView
|
||||||
|
import com.app.wave.keyboard.App
|
||||||
|
import com.app.wave.keyboard.bean.WrapperBean
|
||||||
|
import com.app.wave.keyboard.databinding.FragmentHomepageBinding
|
||||||
|
import com.app.wave.keyboard.callback.MoreCallback
|
||||||
|
import com.app.wave.keyboard.adapter.CategoryAdapter
|
||||||
|
|
||||||
|
class HomepageFragment : Fragment() {
|
||||||
|
|
||||||
|
private var binding: FragmentHomepageBinding? = null
|
||||||
|
private lateinit var viewAllList: MutableList<WrapperBean>
|
||||||
|
private lateinit var adapterParent: CategoryAdapter
|
||||||
|
private var scrollListener: OnScrollListener? = null
|
||||||
|
|
||||||
|
companion object {
|
||||||
|
@JvmStatic
|
||||||
|
fun newInstance() = HomepageFragment()
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onCreateView(
|
||||||
|
inflater: LayoutInflater, container: ViewGroup?,
|
||||||
|
savedInstanceState: Bundle?
|
||||||
|
): View {
|
||||||
|
val vb = FragmentHomepageBinding.inflate(inflater, container, false)
|
||||||
|
binding = vb
|
||||||
|
return vb.root
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
|
||||||
|
super.onViewCreated(view, savedInstanceState)
|
||||||
|
initViews()
|
||||||
|
setupRecyclerView()
|
||||||
|
setupClickListeners()
|
||||||
|
setupScrollListener()
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun initViews() {
|
||||||
|
binding?.let { vb ->
|
||||||
|
vb.appName.typeface = Typeface.create(vb.appName.typeface, Typeface.BOLD)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun setupRecyclerView() {
|
||||||
|
viewAllList = App.Companion.list
|
||||||
|
adapterParent = CategoryAdapter(
|
||||||
|
requireContext(), viewAllList
|
||||||
|
).apply {
|
||||||
|
setClickAction(object : MoreCallback {
|
||||||
|
override fun OnClickSeeAll(name: String) {
|
||||||
|
startActivity(Intent(requireContext(),
|
||||||
|
MoreActivity::class.java).apply {
|
||||||
|
putExtra(MoreActivity.KEY_NAME, name)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
binding?.let { vb ->
|
||||||
|
vb.recyclerview.run {
|
||||||
|
adapter = adapterParent
|
||||||
|
layoutManager = LinearLayoutManager(requireContext())
|
||||||
|
|
||||||
|
// 添加垂直间距装饰器
|
||||||
|
if (itemDecorationCount == 0) {
|
||||||
|
addItemDecoration(VerticalSpaceItemDecoration(
|
||||||
|
topSpacing = 0, // 第一个item顶部不需要间距
|
||||||
|
betweenSpacing = 11.dpToPx(requireContext()), // item之间的间距
|
||||||
|
bottomSpacing = 4.dpToPx(requireContext()) // 每个item的底部间距
|
||||||
|
))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 简单的垂直间距装饰器
|
||||||
|
class VerticalSpaceItemDecoration(
|
||||||
|
private val topSpacing: Int = 0,
|
||||||
|
private val betweenSpacing: Int = 0,
|
||||||
|
private val bottomSpacing: Int = 0
|
||||||
|
) : RecyclerView.ItemDecoration() {
|
||||||
|
|
||||||
|
override fun getItemOffsets(
|
||||||
|
outRect: Rect,
|
||||||
|
view: View,
|
||||||
|
parent: RecyclerView,
|
||||||
|
state: RecyclerView.State
|
||||||
|
) {
|
||||||
|
super.getItemOffsets(outRect, view, parent, state)
|
||||||
|
|
||||||
|
val position = parent.getChildAdapterPosition(view)
|
||||||
|
val itemCount = state.itemCount
|
||||||
|
|
||||||
|
if (position == 0) {
|
||||||
|
// 第一个item
|
||||||
|
outRect.top = topSpacing
|
||||||
|
outRect.bottom = betweenSpacing
|
||||||
|
} else if (position == itemCount - 1) {
|
||||||
|
// 最后一个item
|
||||||
|
outRect.top = betweenSpacing
|
||||||
|
outRect.bottom = bottomSpacing
|
||||||
|
} else {
|
||||||
|
// 中间的item
|
||||||
|
outRect.top = betweenSpacing
|
||||||
|
outRect.bottom = betweenSpacing
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// dp转px的扩展函数
|
||||||
|
private fun Int.dpToPx(context: Context): Int {
|
||||||
|
return (this * context.resources.displayMetrics.density).toInt()
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun setupClickListeners() {
|
||||||
|
binding?.let { vb ->
|
||||||
|
// 回到顶部按钮点击事件
|
||||||
|
vb.btnScrollToTop.setOnClickListener {
|
||||||
|
scrollToTop()
|
||||||
|
}
|
||||||
|
|
||||||
|
// 应用图标点击事件(回到顶部)
|
||||||
|
vb.appIcon.setOnClickListener {
|
||||||
|
scrollToTop()
|
||||||
|
}
|
||||||
|
|
||||||
|
// 收藏图标点击事件 - 修改为跳转到设置页面
|
||||||
|
vb.collectionIcon.setOnClickListener {
|
||||||
|
openSettingActivity()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun openSettingActivity() {
|
||||||
|
try {
|
||||||
|
val intent = Intent(requireContext(), SettingsActivity::class.java)
|
||||||
|
startActivity(intent)
|
||||||
|
} catch (e: ClassNotFoundException) {
|
||||||
|
e.printStackTrace()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun setupScrollListener() {
|
||||||
|
binding?.let { vb ->
|
||||||
|
vb.recyclerview.addOnScrollListener(object : RecyclerView.OnScrollListener() {
|
||||||
|
override fun onScrolled(recyclerView: RecyclerView, dx: Int, dy: Int) {
|
||||||
|
super.onScrolled(recyclerView, dx, dy)
|
||||||
|
|
||||||
|
// 检查是否可以向上滚动
|
||||||
|
val canScrollUp = recyclerView.canScrollVertically(-1)
|
||||||
|
vb.btnScrollToTop.visibility = if (canScrollUp) View.VISIBLE else View.GONE
|
||||||
|
|
||||||
|
// 通知外部滚动监听器
|
||||||
|
scrollListener?.onScroll(canScrollUp)
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onScrollStateChanged(recyclerView: RecyclerView, newState: Int) {
|
||||||
|
super.onScrollStateChanged(recyclerView, newState)
|
||||||
|
|
||||||
|
// 滚动停止时检查一次,确保状态正确
|
||||||
|
if (newState == RecyclerView.SCROLL_STATE_IDLE) {
|
||||||
|
val canScrollUp = recyclerView.canScrollVertically(-1)
|
||||||
|
vb.btnScrollToTop.visibility = if (canScrollUp) View.VISIBLE else View.GONE
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
// 初始检查一次,如果一开始就可以向上滚动,就显示按钮
|
||||||
|
vb.recyclerview.post {
|
||||||
|
val canScrollUp = vb.recyclerview.canScrollVertically(-1)
|
||||||
|
vb.btnScrollToTop.visibility = if (canScrollUp) View.VISIBLE else View.GONE
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun scrollToTop() {
|
||||||
|
binding?.let { vb ->
|
||||||
|
if (vb.recyclerview.layoutManager != null) {
|
||||||
|
// 平滑滚动到顶部
|
||||||
|
vb.recyclerview.smoothScrollToPosition(0)
|
||||||
|
// 滚动结束后会触发onScrolled,按钮会自动隐藏
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 提供一个公共方法供外部调用滚动到顶部
|
||||||
|
fun scrollToTopFromOutside() {
|
||||||
|
scrollToTop()
|
||||||
|
}
|
||||||
|
|
||||||
|
// 检查是否可以向上滚动(用于外部调用)
|
||||||
|
fun canScrollUp(): Boolean {
|
||||||
|
return binding?.recyclerview?.canScrollVertically(-1) ?: false
|
||||||
|
}
|
||||||
|
|
||||||
|
// 检查当前滚动状态(用于外部调用)
|
||||||
|
fun checkCurrentScrollState() {
|
||||||
|
val canScrollUp = canScrollUp()
|
||||||
|
scrollListener?.onScroll(canScrollUp)
|
||||||
|
}
|
||||||
|
|
||||||
|
// 滚动监听器接口
|
||||||
|
interface OnScrollListener {
|
||||||
|
fun onScroll(canScrollUp: Boolean)
|
||||||
|
}
|
||||||
|
|
||||||
|
// 设置滚动监听器
|
||||||
|
fun setOnScrollListener(listener: OnScrollListener) {
|
||||||
|
this.scrollListener = listener
|
||||||
|
// 立即检查当前状态并通知
|
||||||
|
checkCurrentScrollState()
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onDestroyView() {
|
||||||
|
super.onDestroyView()
|
||||||
|
binding = null
|
||||||
|
scrollListener = null
|
||||||
|
}
|
||||||
|
}
|
||||||
180
app/src/main/java/com/app/wave/keyboard/ui/KeyboardDialog.kt
Normal file
@ -0,0 +1,180 @@
|
|||||||
|
package com.app.wave.keyboard.ui
|
||||||
|
|
||||||
|
import android.content.BroadcastReceiver
|
||||||
|
import android.content.Context
|
||||||
|
import android.content.Intent
|
||||||
|
import android.content.IntentFilter
|
||||||
|
import android.graphics.Color
|
||||||
|
import android.graphics.drawable.ColorDrawable
|
||||||
|
import android.os.Bundle
|
||||||
|
import android.provider.Settings
|
||||||
|
import android.view.Gravity
|
||||||
|
import android.view.LayoutInflater
|
||||||
|
import android.view.View
|
||||||
|
import android.view.ViewGroup
|
||||||
|
import android.view.WindowManager
|
||||||
|
import android.view.inputmethod.InputMethodManager
|
||||||
|
import android.widget.ImageView
|
||||||
|
import android.widget.LinearLayout
|
||||||
|
import android.widget.TextView
|
||||||
|
import androidx.appcompat.app.AppCompatActivity
|
||||||
|
import androidx.core.view.isVisible
|
||||||
|
import androidx.fragment.app.DialogFragment
|
||||||
|
import com.app.wave.keyboard.App
|
||||||
|
import com.app.wave.keyboard.R
|
||||||
|
import com.app.wave.keyboard.databinding.DialogKeyboardBinding
|
||||||
|
import com.app.wave.keyboard.utils.Comutils
|
||||||
|
|
||||||
|
|
||||||
|
class KeyboardDialog : DialogFragment() {
|
||||||
|
|
||||||
|
private lateinit var vb: DialogKeyboardBinding
|
||||||
|
|
||||||
|
private lateinit var layoutStepOne: LinearLayout
|
||||||
|
private lateinit var layoutStepTwo: LinearLayout
|
||||||
|
private lateinit var imgStepOkOne: ImageView
|
||||||
|
private lateinit var imgStepOkTwo: ImageView
|
||||||
|
private lateinit var intentFilter: IntentFilter
|
||||||
|
private var myreceiver: BroadcastReceiver? = null
|
||||||
|
|
||||||
|
private lateinit var stepOne: TextView
|
||||||
|
private lateinit var stepTwo: TextView
|
||||||
|
|
||||||
|
private lateinit var context: Context
|
||||||
|
|
||||||
|
private var clickAction: (() -> Unit )? = null
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
companion object {
|
||||||
|
fun newInstance(): KeyboardDialog {
|
||||||
|
val fragment = KeyboardDialog()
|
||||||
|
return fragment
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
fun setClickListener(action:() -> Unit){
|
||||||
|
clickAction = action
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
override fun onCreateView(
|
||||||
|
inflater: LayoutInflater,
|
||||||
|
container: ViewGroup?,
|
||||||
|
savedInstanceState: Bundle?
|
||||||
|
): View {
|
||||||
|
vb = DialogKeyboardBinding.inflate(layoutInflater)
|
||||||
|
context = App.Companion.appInstance
|
||||||
|
|
||||||
|
|
||||||
|
findViewId()
|
||||||
|
onViewStep()
|
||||||
|
getReceiver()
|
||||||
|
return vb.root
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onStart() {
|
||||||
|
super.onStart()
|
||||||
|
dialog?.run {
|
||||||
|
setCanceledOnTouchOutside(true)
|
||||||
|
window?.run {
|
||||||
|
setGravity(Gravity.BOTTOM)
|
||||||
|
setBackgroundDrawable(ColorDrawable(Color.TRANSPARENT))
|
||||||
|
|
||||||
|
attributes = attributes.apply {
|
||||||
|
width = WindowManager.LayoutParams.MATCH_PARENT
|
||||||
|
height = WindowManager.LayoutParams.WRAP_CONTENT
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun findViewId() {
|
||||||
|
|
||||||
|
layoutStepOne = vb.linearStepOne
|
||||||
|
layoutStepTwo = vb.linearStepTwo
|
||||||
|
imgStepOkOne = vb.okOne
|
||||||
|
imgStepOkTwo = vb.okTwo
|
||||||
|
stepOne = vb.textStepOne
|
||||||
|
stepTwo = vb.textStepTwo
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun onViewStep() {
|
||||||
|
|
||||||
|
layoutStepOne.setOnClickListener {
|
||||||
|
startActivity(Intent(Settings.ACTION_INPUT_METHOD_SETTINGS))
|
||||||
|
}
|
||||||
|
layoutStepTwo.setOnClickListener {
|
||||||
|
val inputMethodManager =
|
||||||
|
context.getSystemService(AppCompatActivity.INPUT_METHOD_SERVICE) as InputMethodManager
|
||||||
|
inputMethodManager.showInputMethodPicker()
|
||||||
|
}
|
||||||
|
vb.imClose.setOnClickListener {
|
||||||
|
dismiss()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onResume() {
|
||||||
|
super.onResume()
|
||||||
|
updateUI()
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun getReceiver() {
|
||||||
|
myreceiver = object : BroadcastReceiver() {
|
||||||
|
override fun onReceive(context: Context?, intent: Intent?) {
|
||||||
|
updateUI()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
intentFilter = IntentFilter(Intent.ACTION_INPUT_METHOD_CHANGED)
|
||||||
|
|
||||||
|
context.registerReceiver(myreceiver, intentFilter)
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun updateUI() {
|
||||||
|
|
||||||
|
val checkEnable = Comutils.checkEnable(App.Companion.appInstance)
|
||||||
|
val checkSetDefault = Comutils.checkSetDefault(App.Companion.appInstance)
|
||||||
|
if (checkEnable && checkSetDefault) {
|
||||||
|
clickAction?.invoke()
|
||||||
|
dismiss()
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if (checkEnable) {
|
||||||
|
layoutStepOne.isEnabled = false
|
||||||
|
layoutStepOne.isSelected = true
|
||||||
|
imgStepOkOne.isVisible = true
|
||||||
|
stepOne.setTextColor(context.getColor(R.color.step_true))
|
||||||
|
} else {
|
||||||
|
layoutStepOne.isEnabled = true
|
||||||
|
layoutStepOne.isSelected = false
|
||||||
|
imgStepOkOne.isVisible = false
|
||||||
|
stepOne.setTextColor(context.getColor(R.color.white))
|
||||||
|
}
|
||||||
|
|
||||||
|
if (checkSetDefault) {
|
||||||
|
layoutStepTwo.isEnabled = false
|
||||||
|
layoutStepTwo.isSelected = true
|
||||||
|
imgStepOkTwo.isVisible = true
|
||||||
|
stepTwo.setTextColor(context.getColor(R.color.step_true))
|
||||||
|
} else {
|
||||||
|
layoutStepTwo.isEnabled = true
|
||||||
|
layoutStepTwo.isSelected = false
|
||||||
|
imgStepOkTwo.isVisible = false
|
||||||
|
stepTwo.setTextColor(context.getColor(R.color.white))
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onDestroy() {
|
||||||
|
super.onDestroy()
|
||||||
|
if (myreceiver != null) {
|
||||||
|
context.unregisterReceiver(myreceiver)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
@ -0,0 +1,337 @@
|
|||||||
|
package com.app.wave.keyboard.ui
|
||||||
|
|
||||||
|
import android.annotation.SuppressLint
|
||||||
|
import android.content.Intent
|
||||||
|
import android.graphics.Typeface
|
||||||
|
import android.graphics.drawable.Drawable
|
||||||
|
import android.os.Bundle
|
||||||
|
import android.util.Log
|
||||||
|
import android.view.View
|
||||||
|
import android.widget.FrameLayout
|
||||||
|
import android.widget.ImageView
|
||||||
|
import android.widget.LinearLayout
|
||||||
|
import android.widget.TextView
|
||||||
|
import android.widget.Toast
|
||||||
|
import androidx.activity.enableEdgeToEdge
|
||||||
|
import androidx.appcompat.app.AppCompatActivity
|
||||||
|
import androidx.core.view.OnApplyWindowInsetsListener
|
||||||
|
import androidx.core.view.ViewCompat
|
||||||
|
import androidx.core.view.WindowInsetsCompat
|
||||||
|
import androidx.core.view.isVisible
|
||||||
|
import androidx.lifecycle.lifecycleScope
|
||||||
|
import androidx.recyclerview.widget.GridLayoutManager
|
||||||
|
import androidx.recyclerview.widget.RecyclerView
|
||||||
|
import com.app.wave.keyboard.App
|
||||||
|
import com.app.wave.keyboard.R
|
||||||
|
import com.app.wave.keyboard.bean.DetailsBean
|
||||||
|
import com.app.wave.keyboard.callback.OIClickCallback
|
||||||
|
import com.app.wave.keyboard.callback.SetKBCallback
|
||||||
|
import com.app.wave.keyboard.database.DBManager
|
||||||
|
import com.app.wave.keyboard.adapter.RecommendAdapter
|
||||||
|
import com.app.wave.keyboard.utils.Comutils
|
||||||
|
import com.app.wave.keyboard.utils.ZipFile
|
||||||
|
import com.app.wave.keyboard.utils.SavePresentKB
|
||||||
|
import com.bumptech.glide.Glide
|
||||||
|
import com.bumptech.glide.integration.webp.decoder.WebpDrawable
|
||||||
|
import com.bumptech.glide.load.DataSource
|
||||||
|
import com.bumptech.glide.load.engine.GlideException
|
||||||
|
import com.bumptech.glide.request.RequestListener
|
||||||
|
import com.bumptech.glide.request.target.Target
|
||||||
|
import kotlinx.coroutines.launch
|
||||||
|
import java.io.File
|
||||||
|
|
||||||
|
class KeyboardPreviewActivity : AppCompatActivity() {
|
||||||
|
companion object {
|
||||||
|
@JvmField
|
||||||
|
var DISPLAY_URL_KEY: String = "display_url_key"
|
||||||
|
@JvmField
|
||||||
|
val ZIP_URL_KEY = "zip_url_key"
|
||||||
|
@JvmField
|
||||||
|
val NAME_KEY = "name_key"
|
||||||
|
@JvmField
|
||||||
|
val GIF_KEY = "gif_key"
|
||||||
|
@JvmField
|
||||||
|
val THUMB_KEY = "thumb_key"
|
||||||
|
@JvmField
|
||||||
|
val SOURCE_KEY = "data_key"
|
||||||
|
}
|
||||||
|
|
||||||
|
private var dialog: KeyboardDialog? = null
|
||||||
|
private lateinit var displayUrl: String
|
||||||
|
private lateinit var gifUrl: String
|
||||||
|
private lateinit var zipUrl: String
|
||||||
|
private lateinit var name: String
|
||||||
|
private lateinit var applyBtn: LinearLayout
|
||||||
|
private lateinit var imgData: ImageView
|
||||||
|
private lateinit var imgBack: ImageView
|
||||||
|
private lateinit var textName: TextView
|
||||||
|
private lateinit var btnScrollToTop: ImageView
|
||||||
|
private lateinit var recommendedRecycler: RecyclerView
|
||||||
|
private lateinit var nestedScrollView: androidx.core.widget.NestedScrollView
|
||||||
|
private lateinit var loadingLayout: FrameLayout
|
||||||
|
private lateinit var unzipPath: String
|
||||||
|
private lateinit var tvDownload: TextView
|
||||||
|
private lateinit var imDownload: ImageView
|
||||||
|
private lateinit var thumb: String
|
||||||
|
private lateinit var imgLike: ImageView
|
||||||
|
private lateinit var data: DetailsBean
|
||||||
|
|
||||||
|
override fun onCreate(savedInstanceState: Bundle?) {
|
||||||
|
super.onCreate(savedInstanceState)
|
||||||
|
setContentView(R.layout.activity_keyboard_preview)
|
||||||
|
this.enableEdgeToEdge()
|
||||||
|
ViewCompat.setOnApplyWindowInsetsListener(
|
||||||
|
findViewById(R.id.main),
|
||||||
|
OnApplyWindowInsetsListener { v: View, insets: WindowInsetsCompat ->
|
||||||
|
val systemBars = insets.getInsets(WindowInsetsCompat.Type.systemBars())
|
||||||
|
v.setPadding(systemBars.left, systemBars.top, systemBars.right, systemBars.bottom)
|
||||||
|
insets
|
||||||
|
})
|
||||||
|
|
||||||
|
findViewId()
|
||||||
|
getExtraData()
|
||||||
|
displayData()
|
||||||
|
setApply()
|
||||||
|
onClick()
|
||||||
|
setupScrollListener() // 添加滚动监听
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun findViewId() {
|
||||||
|
applyBtn = findViewById(R.id.layoutDownloadApply)
|
||||||
|
imgData = findViewById(R.id.image_data)
|
||||||
|
imgBack = findViewById(R.id.back)
|
||||||
|
textName = findViewById(R.id.textview_data_name)
|
||||||
|
recommendedRecycler = findViewById(R.id.recommended_recycler)
|
||||||
|
nestedScrollView = findViewById(R.id.nested_scroll_view) // NestedScrollView
|
||||||
|
btnScrollToTop = findViewById(R.id.btn_scroll_to_top)
|
||||||
|
imgLike = findViewById(R.id.im_like)
|
||||||
|
loadingLayout = findViewById(R.id.loading)
|
||||||
|
imDownload = findViewById(R.id.im_download)
|
||||||
|
tvDownload = findViewById(R.id.tv_download)
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun getExtraData() {
|
||||||
|
data = intent.getSerializableExtra(SOURCE_KEY) as DetailsBean
|
||||||
|
displayUrl = intent.getStringExtra(DISPLAY_URL_KEY).toString()
|
||||||
|
zipUrl = intent.getStringExtra(ZIP_URL_KEY).toString()
|
||||||
|
name = intent.getStringExtra(NAME_KEY).toString()
|
||||||
|
gifUrl = intent.getStringExtra(GIF_KEY).toString()
|
||||||
|
thumb = intent.getStringExtra(THUMB_KEY).toString()
|
||||||
|
|
||||||
|
val serviceZipName = ZipFile.getServiceZipName(zipUrl)
|
||||||
|
unzipPath = ZipFile.getUnzipPath(serviceZipName)
|
||||||
|
|
||||||
|
Log.d("KeyboardActivity", "unzipPath=$unzipPath")
|
||||||
|
|
||||||
|
lifecycleScope.launch {
|
||||||
|
DBManager.getIsLike(name) {
|
||||||
|
imgLike.isSelected = it
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (File(unzipPath).exists()) {
|
||||||
|
imDownload.isVisible = false
|
||||||
|
tvDownload.text = getString(R.string.apply)
|
||||||
|
} else {
|
||||||
|
imDownload.isVisible = true
|
||||||
|
tvDownload.text = getString(R.string.download_apply)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun displayData() {
|
||||||
|
textName.text = name
|
||||||
|
textName.setTypeface(textName.typeface, Typeface.BOLD)
|
||||||
|
|
||||||
|
if (gifUrl.isNotEmpty()) {
|
||||||
|
loadImgGif()
|
||||||
|
} else {
|
||||||
|
Glide.with(this)
|
||||||
|
.load(displayUrl)
|
||||||
|
.thumbnail(Glide.with(this).load(thumb))
|
||||||
|
.into(imgData)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun onClick() {
|
||||||
|
imgBack.setOnClickListener {
|
||||||
|
finish()
|
||||||
|
}
|
||||||
|
|
||||||
|
imgLike.setOnClickListener {
|
||||||
|
imgLike.isSelected = !imgLike.isSelected
|
||||||
|
lifecycleScope.launch {
|
||||||
|
if (imgLike.isSelected) {
|
||||||
|
DBManager.addLike(data)
|
||||||
|
} else {
|
||||||
|
DBManager.removeLike(data)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 回到顶部按钮点击事件
|
||||||
|
btnScrollToTop.setOnClickListener {
|
||||||
|
nestedScrollView.smoothScrollTo(0, 0)
|
||||||
|
btnScrollToTop.visibility = View.GONE
|
||||||
|
}
|
||||||
|
|
||||||
|
val forYouList = App.Companion.list.filter {
|
||||||
|
it.parentName == getString(R.string.recommend_name)
|
||||||
|
}
|
||||||
|
|
||||||
|
recommendedRecycler.run {
|
||||||
|
adapter = RecommendAdapter(this@KeyboardPreviewActivity).apply {
|
||||||
|
val shuffled = forYouList[0].keyboardList.shuffled()
|
||||||
|
setForYouList(shuffled)
|
||||||
|
}.apply {
|
||||||
|
setClickAction(object : OIClickCallback {
|
||||||
|
override fun OnItemClickListener() {
|
||||||
|
finish()
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
layoutManager = GridLayoutManager(this@KeyboardPreviewActivity, 2)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// ==================== 滚动监听器 ====================
|
||||||
|
private fun setupScrollListener() {
|
||||||
|
nestedScrollView.setOnScrollChangeListener { v, scrollX, scrollY, oldScrollX, oldScrollY ->
|
||||||
|
// 当滚动超过200像素时显示回到顶部按钮
|
||||||
|
if (scrollY > 200) {
|
||||||
|
btnScrollToTop.visibility = View.VISIBLE
|
||||||
|
} else {
|
||||||
|
btnScrollToTop.visibility = View.GONE
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 也可以为RecyclerView添加监听(双重保险)
|
||||||
|
recommendedRecycler.addOnScrollListener(object : RecyclerView.OnScrollListener() {
|
||||||
|
override fun onScrolled(recyclerView: RecyclerView, dx: Int, dy: Int) {
|
||||||
|
super.onScrolled(recyclerView, dx, dy)
|
||||||
|
// 获取NestedScrollView的滚动位置
|
||||||
|
val scrollY = nestedScrollView.scrollY
|
||||||
|
if (scrollY > 200) {
|
||||||
|
btnScrollToTop.visibility = View.VISIBLE
|
||||||
|
} else {
|
||||||
|
btnScrollToTop.visibility = View.GONE
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
// 初始检查一次
|
||||||
|
nestedScrollView.post {
|
||||||
|
val scrollY = nestedScrollView.scrollY
|
||||||
|
btnScrollToTop.visibility = if (scrollY > 200) View.VISIBLE else View.GONE
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@SuppressLint("CheckResult")
|
||||||
|
private fun loadImgGif() {
|
||||||
|
Glide.with(this)
|
||||||
|
.load(gifUrl)
|
||||||
|
.thumbnail(Glide.with(this).load(thumb))
|
||||||
|
.addListener(object : RequestListener<Drawable> {
|
||||||
|
override fun onLoadFailed(
|
||||||
|
e: GlideException?,
|
||||||
|
model: Any?,
|
||||||
|
target: Target<Drawable>,
|
||||||
|
isFirstResource: Boolean
|
||||||
|
): Boolean {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onResourceReady(
|
||||||
|
resource: Drawable,
|
||||||
|
model: Any,
|
||||||
|
target: Target<Drawable>?,
|
||||||
|
dataSource: DataSource,
|
||||||
|
isFirstResource: Boolean
|
||||||
|
): Boolean {
|
||||||
|
if (resource is WebpDrawable) {
|
||||||
|
resource.loopCount = WebpDrawable.LOOP_FOREVER
|
||||||
|
}
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
}).into(imgData)
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun setApply() {
|
||||||
|
applyBtn.setOnClickListener {
|
||||||
|
val checkEnable = Comutils.checkEnable(this)
|
||||||
|
val checkSetDefault = Comutils.checkSetDefault(this)
|
||||||
|
if (!checkEnable || !checkSetDefault) {
|
||||||
|
showDialog()
|
||||||
|
return@setOnClickListener
|
||||||
|
}
|
||||||
|
startDown()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun showDialog() {
|
||||||
|
dialog = dialog ?: KeyboardDialog.newInstance()
|
||||||
|
dialog?.setClickListener {
|
||||||
|
startDown()
|
||||||
|
}
|
||||||
|
dialog?.show(supportFragmentManager, "")
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun startDown() {
|
||||||
|
loadingLayout.isVisible = true
|
||||||
|
applyBtn.isEnabled = false
|
||||||
|
|
||||||
|
val file = File(unzipPath)
|
||||||
|
if (file.exists()) {
|
||||||
|
val findFirstDirectory = ZipFile.findFirstDirectory(file)
|
||||||
|
apply("${findFirstDirectory}/")
|
||||||
|
applyBtn.isEnabled = true
|
||||||
|
loadingLayout.isVisible = false
|
||||||
|
} else {
|
||||||
|
ZipFile.startDownloadZip(zipUrl, object : SetKBCallback {
|
||||||
|
override fun OnApplySkinListener(fileList: List<File?>?) {
|
||||||
|
runOnUiThread {
|
||||||
|
applyBtn.isEnabled = true
|
||||||
|
loadingLayout.isVisible = false
|
||||||
|
}
|
||||||
|
if (fileList.isNullOrEmpty()) {
|
||||||
|
runOnUiThread {
|
||||||
|
Toast.makeText(
|
||||||
|
this@KeyboardPreviewActivity,
|
||||||
|
getString(R.string.download_fail),
|
||||||
|
Toast.LENGTH_SHORT
|
||||||
|
).show()
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if (file.exists()) {
|
||||||
|
val findFirstDirectory = ZipFile.findFirstDirectory(file)
|
||||||
|
Log.d(
|
||||||
|
App.Companion.TAG,
|
||||||
|
"----apply------------it=$findFirstDirectory"
|
||||||
|
)
|
||||||
|
runOnUiThread {
|
||||||
|
apply("${findFirstDirectory}/")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun apply(path: String) {
|
||||||
|
var skinParentPath = path
|
||||||
|
if (path.contains("res")) {
|
||||||
|
skinParentPath = path.substringBeforeLast("res")
|
||||||
|
}
|
||||||
|
|
||||||
|
SavePresentKB.updateSkinPath(skinParentPath)
|
||||||
|
Toast.makeText(
|
||||||
|
this@KeyboardPreviewActivity,
|
||||||
|
getString(R.string.theme_application_successful),
|
||||||
|
Toast.LENGTH_SHORT
|
||||||
|
).show()
|
||||||
|
startActivity(Intent(this, ApplyActivity::class.java).apply {
|
||||||
|
putExtra(ApplyActivity.key_name, name)
|
||||||
|
})
|
||||||
|
finish()
|
||||||
|
}
|
||||||
|
}
|
||||||
118
app/src/main/java/com/app/wave/keyboard/ui/MainActivity.java
Normal file
@ -0,0 +1,118 @@
|
|||||||
|
package com.app.wave.keyboard.ui;
|
||||||
|
|
||||||
|
import android.os.Bundle;
|
||||||
|
import android.view.View;
|
||||||
|
import android.view.ViewGroup;
|
||||||
|
import android.widget.ImageView;
|
||||||
|
|
||||||
|
import androidx.activity.EdgeToEdge;
|
||||||
|
import androidx.annotation.NonNull;
|
||||||
|
import androidx.appcompat.app.AppCompatActivity;
|
||||||
|
import androidx.core.content.ContextCompat;
|
||||||
|
import androidx.core.graphics.Insets;
|
||||||
|
import androidx.core.view.ViewCompat;
|
||||||
|
import androidx.core.view.WindowInsetsCompat;
|
||||||
|
import androidx.fragment.app.Fragment;
|
||||||
|
import androidx.viewpager2.adapter.FragmentStateAdapter;
|
||||||
|
|
||||||
|
import com.app.wave.keyboard.R;
|
||||||
|
import com.app.wave.keyboard.databinding.ActivityMainBinding;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
public class MainActivity extends AppCompatActivity {
|
||||||
|
|
||||||
|
private ActivityMainBinding vb;
|
||||||
|
private ImageView homeIcon, favoriteIcon;
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void onCreate(Bundle savedInstanceState) {
|
||||||
|
super.onCreate(savedInstanceState);
|
||||||
|
vb = ActivityMainBinding.inflate(getLayoutInflater());
|
||||||
|
EdgeToEdge.enable(this);
|
||||||
|
setContentView(vb.getRoot());
|
||||||
|
ViewCompat.setOnApplyWindowInsetsListener(findViewById(R.id.main), (v, insets) -> {
|
||||||
|
Insets systemBars = insets.getInsets(WindowInsetsCompat.Type.systemBars());
|
||||||
|
v.setPadding(systemBars.left, systemBars.top, systemBars.right, systemBars.bottom);
|
||||||
|
return insets;
|
||||||
|
});
|
||||||
|
|
||||||
|
init();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void init() {
|
||||||
|
List<Fragment> listFragment = new ArrayList<>();
|
||||||
|
listFragment.add(HomepageFragment.newInstance());
|
||||||
|
listFragment.add(CollectionFragment.newInstance());
|
||||||
|
|
||||||
|
// 获取容器视图
|
||||||
|
View tabHomeContainer = findViewById(R.id.tab_home_container);
|
||||||
|
View tabFavoriteContainer = findViewById(R.id.tab_favorite_container);
|
||||||
|
|
||||||
|
// 获取图标
|
||||||
|
homeIcon = findViewById(R.id.tab_home).findViewById(R.id.im_icon);
|
||||||
|
favoriteIcon = findViewById(R.id.tab_favorite).findViewById(R.id.im_icon);
|
||||||
|
|
||||||
|
// 设置图标
|
||||||
|
homeIcon.setImageDrawable(ContextCompat.getDrawable(this, R.drawable.item_hometab));
|
||||||
|
favoriteIcon.setImageDrawable(ContextCompat.getDrawable(this, R.drawable.item_favouritetab));
|
||||||
|
|
||||||
|
// 初始状态:第一个选中
|
||||||
|
homeIcon.setSelected(true);
|
||||||
|
favoriteIcon.setSelected(false);
|
||||||
|
|
||||||
|
int desiredIconSize = dpToPx(36);
|
||||||
|
|
||||||
|
ViewGroup.LayoutParams homeParams = homeIcon.getLayoutParams();
|
||||||
|
homeParams.width = desiredIconSize;
|
||||||
|
homeParams.height = desiredIconSize;
|
||||||
|
homeIcon.setLayoutParams(homeParams);
|
||||||
|
|
||||||
|
ViewGroup.LayoutParams favoriteParams = favoriteIcon.getLayoutParams();
|
||||||
|
favoriteParams.width = desiredIconSize;
|
||||||
|
favoriteParams.height = desiredIconSize;
|
||||||
|
favoriteIcon.setLayoutParams(favoriteParams);
|
||||||
|
|
||||||
|
// 设置点击监听(监听容器而不是内部视图)
|
||||||
|
tabHomeContainer.setOnClickListener(v -> {
|
||||||
|
vb.viewpager.setCurrentItem(0);
|
||||||
|
updateTabSelection(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
tabFavoriteContainer.setOnClickListener(v -> {
|
||||||
|
vb.viewpager.setCurrentItem(1);
|
||||||
|
updateTabSelection(false);
|
||||||
|
});
|
||||||
|
|
||||||
|
vb.viewpager.setUserInputEnabled(false);
|
||||||
|
vb.viewpager.setAdapter(new FragmentStateAdapter(this) {
|
||||||
|
@NonNull
|
||||||
|
@Override
|
||||||
|
public Fragment createFragment(int position) {
|
||||||
|
return listFragment.get(position);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int getItemCount() {
|
||||||
|
return listFragment.size();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
vb.viewpager.setCurrentItem(0);
|
||||||
|
updateTabSelection(true);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void updateTabSelection(boolean isHomeSelected) {
|
||||||
|
if (homeIcon != null && favoriteIcon != null) {
|
||||||
|
homeIcon.setSelected(isHomeSelected);
|
||||||
|
favoriteIcon.setSelected(!isHomeSelected);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// DP转PX的辅助方法
|
||||||
|
private int dpToPx(int dp) {
|
||||||
|
float density = getResources().getDisplayMetrics().density;
|
||||||
|
return Math.round(dp * density);
|
||||||
|
}
|
||||||
|
}
|
||||||
126
app/src/main/java/com/app/wave/keyboard/ui/MoreActivity.java
Normal file
@ -0,0 +1,126 @@
|
|||||||
|
package com.app.wave.keyboard.ui;
|
||||||
|
|
||||||
|
import android.os.Bundle;
|
||||||
|
import android.view.View;
|
||||||
|
|
||||||
|
import androidx.activity.EdgeToEdge;
|
||||||
|
import androidx.appcompat.app.AppCompatActivity;
|
||||||
|
import androidx.core.graphics.Insets;
|
||||||
|
import androidx.core.view.ViewCompat;
|
||||||
|
import androidx.core.view.WindowInsetsCompat;
|
||||||
|
import androidx.recyclerview.widget.GridLayoutManager;
|
||||||
|
import androidx.recyclerview.widget.RecyclerView;
|
||||||
|
|
||||||
|
import com.app.wave.keyboard.App;
|
||||||
|
import com.app.wave.keyboard.R;
|
||||||
|
import com.app.wave.keyboard.bean.DetailsBean;
|
||||||
|
import com.app.wave.keyboard.bean.WrapperBean;
|
||||||
|
import com.app.wave.keyboard.databinding.ActivityMoreBinding;
|
||||||
|
import com.app.wave.keyboard.adapter.CategoryItemAdapter;
|
||||||
|
import com.app.wave.keyboard.utils.ItemDeco;
|
||||||
|
import android.graphics.Typeface;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
public class MoreActivity extends AppCompatActivity {
|
||||||
|
|
||||||
|
private ActivityMoreBinding vb;
|
||||||
|
public static final String KEY_NAME = "class_name";
|
||||||
|
private String name;
|
||||||
|
private List<DetailsBean> data;
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void onCreate(Bundle savedInstanceState) {
|
||||||
|
super.onCreate(savedInstanceState);
|
||||||
|
vb = ActivityMoreBinding.inflate(getLayoutInflater());
|
||||||
|
EdgeToEdge.enable(this);
|
||||||
|
setContentView(vb.getRoot());
|
||||||
|
ViewCompat.setOnApplyWindowInsetsListener(findViewById(R.id.main), (v, insets) -> {
|
||||||
|
Insets systemBars = insets.getInsets(WindowInsetsCompat.Type.systemBars());
|
||||||
|
v.setPadding(systemBars.left, systemBars.top, systemBars.right, systemBars.bottom);
|
||||||
|
return insets;
|
||||||
|
});
|
||||||
|
|
||||||
|
name = getIntent().getStringExtra(KEY_NAME);
|
||||||
|
initData();
|
||||||
|
initClick();
|
||||||
|
setupScrollListener(); // 添加滚动监听
|
||||||
|
}
|
||||||
|
|
||||||
|
private void initData() {
|
||||||
|
vb.className.setText(name);
|
||||||
|
vb.className.setTypeface(vb.className.getTypeface(), Typeface.BOLD);
|
||||||
|
for (WrapperBean wrapperBean : App.list) {
|
||||||
|
if (wrapperBean.getParentName().equals(name)) {
|
||||||
|
data = wrapperBean.getKeyboardList();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
ItemDeco itemDeco = new ItemDeco(3, 3, 0);
|
||||||
|
CategoryItemAdapter adapterMain = new CategoryItemAdapter(this, data);
|
||||||
|
adapterMain.setAdaptiveWidthMode(3);
|
||||||
|
|
||||||
|
vb.recycler.setLayoutManager(new GridLayoutManager(MoreActivity.this, 3));
|
||||||
|
vb.recycler.setAdapter(adapterMain);
|
||||||
|
vb.recycler.addItemDecoration(itemDeco);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void initClick() {
|
||||||
|
// 返回按钮点击
|
||||||
|
vb.back.setOnClickListener(new View.OnClickListener() {
|
||||||
|
@Override
|
||||||
|
public void onClick(View v) {
|
||||||
|
finish();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// 回到顶部按钮点击
|
||||||
|
vb.btnScrollToTop.setOnClickListener(new View.OnClickListener() {
|
||||||
|
@Override
|
||||||
|
public void onClick(View v) {
|
||||||
|
scrollToTop();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// 设置滚动监听器
|
||||||
|
private void setupScrollListener() {
|
||||||
|
vb.recycler.addOnScrollListener(new RecyclerView.OnScrollListener() {
|
||||||
|
@Override
|
||||||
|
public void onScrolled(RecyclerView recyclerView, int dx, int dy) {
|
||||||
|
super.onScrolled(recyclerView, dx, dy);
|
||||||
|
|
||||||
|
// 检查是否可以向上滚动
|
||||||
|
boolean canScrollUp = recyclerView.canScrollVertically(-1);
|
||||||
|
vb.btnScrollToTop.setVisibility(canScrollUp ? View.VISIBLE : View.GONE);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onScrollStateChanged(RecyclerView recyclerView, int newState) {
|
||||||
|
super.onScrollStateChanged(recyclerView, newState);
|
||||||
|
|
||||||
|
// 滚动停止时检查一次,确保状态正确
|
||||||
|
if (newState == RecyclerView.SCROLL_STATE_IDLE) {
|
||||||
|
boolean canScrollUp = recyclerView.canScrollVertically(-1);
|
||||||
|
vb.btnScrollToTop.setVisibility(canScrollUp ? View.VISIBLE : View.GONE);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// 初始检查一次,如果一开始就可以向上滚动,就显示按钮
|
||||||
|
vb.recycler.post(new Runnable() {
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
|
boolean canScrollUp = vb.recycler.canScrollVertically(-1);
|
||||||
|
vb.btnScrollToTop.setVisibility(canScrollUp ? View.VISIBLE : View.GONE);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// 回到顶部方法
|
||||||
|
private void scrollToTop() {
|
||||||
|
if (vb.recycler.getLayoutManager() != null) {
|
||||||
|
// 平滑滚动到顶部
|
||||||
|
vb.recycler.smoothScrollToPosition(0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
263
app/src/main/java/com/app/wave/keyboard/ui/SettingsActivity.java
Normal file
@ -0,0 +1,263 @@
|
|||||||
|
package com.app.wave.keyboard.ui;
|
||||||
|
|
||||||
|
import android.annotation.SuppressLint;
|
||||||
|
import android.app.AlertDialog;
|
||||||
|
import android.content.Intent;
|
||||||
|
import android.content.pm.PackageInfo;
|
||||||
|
import android.content.pm.PackageManager;
|
||||||
|
import android.graphics.drawable.GradientDrawable;
|
||||||
|
import android.net.Uri;
|
||||||
|
import android.os.Bundle;
|
||||||
|
import android.view.LayoutInflater;
|
||||||
|
import android.view.View;
|
||||||
|
import android.view.Window;
|
||||||
|
import android.view.WindowManager;
|
||||||
|
import android.widget.ImageView;
|
||||||
|
import android.widget.TextView;
|
||||||
|
import android.widget.Toast;
|
||||||
|
|
||||||
|
import androidx.appcompat.app.AppCompatActivity;
|
||||||
|
|
||||||
|
import com.app.wave.keyboard.R;
|
||||||
|
import com.google.android.material.button.MaterialButton;
|
||||||
|
|
||||||
|
public class SettingsActivity extends AppCompatActivity {
|
||||||
|
|
||||||
|
private int currentRating = 0;
|
||||||
|
private AlertDialog ratingDialog;
|
||||||
|
|
||||||
|
@SuppressLint("MissingInflatedId")
|
||||||
|
@Override
|
||||||
|
protected void onCreate(Bundle savedInstanceState) {
|
||||||
|
super.onCreate(savedInstanceState);
|
||||||
|
|
||||||
|
supportRequestWindowFeature(Window.FEATURE_NO_TITLE);
|
||||||
|
setContentView(R.layout.activity_settings);
|
||||||
|
setupDialogWindow();
|
||||||
|
|
||||||
|
setupViews();
|
||||||
|
setVersionNumber();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void setupDialogWindow() {
|
||||||
|
Window window = getWindow();
|
||||||
|
if (window != null) {
|
||||||
|
// 设置窗口宽度和高度
|
||||||
|
WindowManager.LayoutParams params = window.getAttributes();
|
||||||
|
params.width = WindowManager.LayoutParams.MATCH_PARENT;
|
||||||
|
params.height = WindowManager.LayoutParams.WRAP_CONTENT;
|
||||||
|
params.dimAmount = 0.5f; // 背景暗色程度
|
||||||
|
window.setAttributes(params);
|
||||||
|
|
||||||
|
// 创建圆角背景
|
||||||
|
GradientDrawable background = new GradientDrawable();
|
||||||
|
background.setColor(getResources().getColor(R.color.theme_background));
|
||||||
|
background.setCornerRadius(dpToPx(20));
|
||||||
|
|
||||||
|
// 设置背景
|
||||||
|
window.setBackgroundDrawable(background);
|
||||||
|
|
||||||
|
// 确保没有标题栏
|
||||||
|
if (getSupportActionBar() != null) {
|
||||||
|
getSupportActionBar().hide();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private int dpToPx(int dp) {
|
||||||
|
float density = getResources().getDisplayMetrics().density;
|
||||||
|
return Math.round(dp * density);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void setupViews() {
|
||||||
|
// 关闭按钮
|
||||||
|
ImageView closeButton = findViewById(R.id.close_button);
|
||||||
|
closeButton.setOnClickListener(v -> finish());
|
||||||
|
|
||||||
|
// 评分区域
|
||||||
|
View rateUsLayout = findViewById(R.id.rateUsLayout);
|
||||||
|
rateUsLayout.setOnClickListener(v -> showRatingDialog());
|
||||||
|
}
|
||||||
|
|
||||||
|
private void setVersionNumber() {
|
||||||
|
try {
|
||||||
|
PackageInfo info = getPackageManager()
|
||||||
|
.getPackageInfo(getPackageName(), 0);
|
||||||
|
String version = info.versionName;
|
||||||
|
TextView versionValue = findViewById(R.id.versionValue);
|
||||||
|
versionValue.setText(version);
|
||||||
|
} catch (PackageManager.NameNotFoundException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
TextView versionValue = findViewById(R.id.versionValue);
|
||||||
|
versionValue.setText("1.0");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void showRatingDialog() {
|
||||||
|
AlertDialog.Builder builder = new AlertDialog.Builder(this);
|
||||||
|
|
||||||
|
android.view.ContextThemeWrapper themedContext =
|
||||||
|
new android.view.ContextThemeWrapper(this, R.style.Theme_PaintingHelper);
|
||||||
|
|
||||||
|
View dialogView;
|
||||||
|
try {
|
||||||
|
LayoutInflater inflater = LayoutInflater.from(themedContext);
|
||||||
|
dialogView = inflater.inflate(R.layout.dialog_rateus, null);
|
||||||
|
} catch (Exception e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
Toast.makeText(this, "Error loading rating dialog", Toast.LENGTH_SHORT).show();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 查找所有视图
|
||||||
|
ImageView star1 = dialogView.findViewById(R.id.star1);
|
||||||
|
ImageView star2 = dialogView.findViewById(R.id.star2);
|
||||||
|
ImageView star3 = dialogView.findViewById(R.id.star3);
|
||||||
|
ImageView star4 = dialogView.findViewById(R.id.star4);
|
||||||
|
ImageView star5 = dialogView.findViewById(R.id.star5);
|
||||||
|
|
||||||
|
// 使用MaterialButton类型
|
||||||
|
MaterialButton btnCancel = dialogView.findViewById(R.id.btn_cancel);
|
||||||
|
MaterialButton btnRate = dialogView.findViewById(R.id.btn_rate);
|
||||||
|
|
||||||
|
currentRating = 0;
|
||||||
|
if (btnRate != null) {
|
||||||
|
btnRate.setEnabled(false);
|
||||||
|
updateRateButtonState(btnRate, currentRating);
|
||||||
|
}
|
||||||
|
|
||||||
|
View.OnClickListener starClickListener = v -> {
|
||||||
|
int rating = 0;
|
||||||
|
int viewId = v.getId();
|
||||||
|
|
||||||
|
if (viewId == R.id.star1) rating = 1;
|
||||||
|
else if (viewId == R.id.star2) rating = 2;
|
||||||
|
else if (viewId == R.id.star3) rating = 3;
|
||||||
|
else if (viewId == R.id.star4) rating = 4;
|
||||||
|
else if (viewId == R.id.star5) rating = 5;
|
||||||
|
|
||||||
|
updateStarRating(star1, star2, star3, star4, star5, rating);
|
||||||
|
currentRating = rating;
|
||||||
|
|
||||||
|
if (btnRate != null) {
|
||||||
|
btnRate.setEnabled(rating > 0);
|
||||||
|
updateRateButtonState(btnRate, rating);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
if (star1 != null) star1.setOnClickListener(starClickListener);
|
||||||
|
if (star2 != null) star2.setOnClickListener(starClickListener);
|
||||||
|
if (star3 != null) star3.setOnClickListener(starClickListener);
|
||||||
|
if (star4 != null) star4.setOnClickListener(starClickListener);
|
||||||
|
if (star5 != null) star5.setOnClickListener(starClickListener);
|
||||||
|
|
||||||
|
ratingDialog = builder.setView(dialogView)
|
||||||
|
.setCancelable(true)
|
||||||
|
.create();
|
||||||
|
|
||||||
|
// 设置Dialog窗口属性
|
||||||
|
Window ratingWindow = ratingDialog.getWindow();
|
||||||
|
if (ratingWindow != null) {
|
||||||
|
ratingWindow.setBackgroundDrawableResource(android.R.color.transparent);
|
||||||
|
ratingWindow.setDimAmount(0.6f);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (btnCancel != null) {
|
||||||
|
btnCancel.setOnClickListener(v -> {
|
||||||
|
if (ratingDialog != null && ratingDialog.isShowing()) {
|
||||||
|
ratingDialog.dismiss();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
if (btnRate != null) {
|
||||||
|
btnRate.setOnClickListener(v -> {
|
||||||
|
if (currentRating > 0) {
|
||||||
|
handleRatingSubmission(currentRating);
|
||||||
|
if (ratingDialog != null && ratingDialog.isShowing()) {
|
||||||
|
ratingDialog.dismiss();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
ratingDialog.show();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void updateStarRating(ImageView star1, ImageView star2, ImageView star3,
|
||||||
|
ImageView star4, ImageView star5, int rating) {
|
||||||
|
if (star1 == null || star2 == null || star3 == null || star4 == null || star5 == null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
int starFilledRes = R.mipmap.icon_star;
|
||||||
|
int starOutlineRes = R.mipmap.icon_starblack;
|
||||||
|
|
||||||
|
star1.setImageResource(rating >= 1 ? starFilledRes : starOutlineRes);
|
||||||
|
star2.setImageResource(rating >= 2 ? starFilledRes : starOutlineRes);
|
||||||
|
star3.setImageResource(rating >= 3 ? starFilledRes : starOutlineRes);
|
||||||
|
star4.setImageResource(rating >= 4 ? starFilledRes : starOutlineRes);
|
||||||
|
star5.setImageResource(rating >= 5 ? starFilledRes : starOutlineRes);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void updateRateButtonState(MaterialButton rateButton, int rating) {
|
||||||
|
if (rateButton == null) return;
|
||||||
|
|
||||||
|
if (rating > 0) {
|
||||||
|
rateButton.setEnabled(true);
|
||||||
|
try {
|
||||||
|
rateButton.setBackgroundResource(R.drawable.dialog_rateit);
|
||||||
|
} catch (Exception e) {
|
||||||
|
// 使用默认背景
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
rateButton.setEnabled(false);
|
||||||
|
try {
|
||||||
|
rateButton.setBackgroundResource(R.drawable.dialog_rateit_outline);
|
||||||
|
} catch (Exception e) {
|
||||||
|
// 使用默认背景
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void handleRatingSubmission(int rating) {
|
||||||
|
String message;
|
||||||
|
if (rating >= 4) {
|
||||||
|
message = "Thank you for your " + rating + " star rating!";
|
||||||
|
openPlayStoreForReview();
|
||||||
|
} else {
|
||||||
|
message = "Thanks for your " + rating + " star feedback!";
|
||||||
|
}
|
||||||
|
|
||||||
|
Toast.makeText(this, message, Toast.LENGTH_SHORT).show();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void openPlayStoreForReview() {
|
||||||
|
try {
|
||||||
|
String packageName = getPackageName();
|
||||||
|
Intent intent = new Intent(Intent.ACTION_VIEW,
|
||||||
|
Uri.parse("market://details?id=" + packageName));
|
||||||
|
startActivity(intent);
|
||||||
|
} catch (android.content.ActivityNotFoundException e) {
|
||||||
|
String packageName = getPackageName();
|
||||||
|
Intent intent = new Intent(Intent.ACTION_VIEW,
|
||||||
|
Uri.parse("https://play.google.com/store/apps/details?id=" + packageName));
|
||||||
|
startActivity(intent);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void finish() {
|
||||||
|
super.finish();
|
||||||
|
overridePendingTransition(android.R.anim.fade_in, android.R.anim.fade_out);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void onDestroy() {
|
||||||
|
super.onDestroy();
|
||||||
|
if (ratingDialog != null && ratingDialog.isShowing()) {
|
||||||
|
ratingDialog.dismiss();
|
||||||
|
}
|
||||||
|
ratingDialog = null;
|
||||||
|
}
|
||||||
|
}
|
||||||
98
app/src/main/java/com/app/wave/keyboard/ui/SplashActivity.kt
Normal file
@ -0,0 +1,98 @@
|
|||||||
|
package com.app.wave.keyboard.ui
|
||||||
|
|
||||||
|
import android.app.Activity
|
||||||
|
import android.content.Intent
|
||||||
|
import android.os.Bundle
|
||||||
|
import android.os.CountDownTimer
|
||||||
|
import android.os.Handler
|
||||||
|
import android.os.Looper
|
||||||
|
import android.widget.ProgressBar
|
||||||
|
import android.widget.TextView
|
||||||
|
import com.app.wave.keyboard.R
|
||||||
|
import com.app.wave.keyboard.utils.Comutils
|
||||||
|
|
||||||
|
class SplashActivity : Activity() {
|
||||||
|
|
||||||
|
private lateinit var progressBar: ProgressBar
|
||||||
|
private lateinit var progressPercentText: TextView
|
||||||
|
private lateinit var versionText: TextView
|
||||||
|
|
||||||
|
private var totalTime = 2000L // 总时间2秒
|
||||||
|
private lateinit var timer: CountDownTimer
|
||||||
|
|
||||||
|
override fun onCreate(savedInstanceState: Bundle?) {
|
||||||
|
super.onCreate(savedInstanceState)
|
||||||
|
setContentView(R.layout.activity_splash)
|
||||||
|
Comutils.initFullScreen(this, true,true)
|
||||||
|
|
||||||
|
initViews()
|
||||||
|
setVersionInfo()
|
||||||
|
initProgressTimer()
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun initViews() {
|
||||||
|
progressBar = findViewById(R.id.progressbar)
|
||||||
|
progressPercentText = findViewById(R.id.textview_progress_percent)
|
||||||
|
versionText = findViewById(R.id.textview_version)
|
||||||
|
|
||||||
|
// 确保进度条从0开始
|
||||||
|
progressBar.max = 100
|
||||||
|
progressBar.progress = 0
|
||||||
|
// 清除二级进度
|
||||||
|
progressBar.secondaryProgress = 0
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun setVersionInfo() {
|
||||||
|
try {
|
||||||
|
val packageInfo = packageManager.getPackageInfo(packageName, 0)
|
||||||
|
val versionName = packageInfo.versionName
|
||||||
|
versionText.text = "Version $versionName"
|
||||||
|
} catch (e: Exception) {
|
||||||
|
e.printStackTrace()
|
||||||
|
versionText.text = "Version 1.0.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun initProgressTimer() {
|
||||||
|
timer = object : CountDownTimer(totalTime, 100) {
|
||||||
|
override fun onTick(millisUntilFinished: Long) {
|
||||||
|
// 计算进度百分比(递增逻辑)
|
||||||
|
val progressPercentage = (100 * millisUntilFinished / totalTime).toInt()
|
||||||
|
val countdownPercentage = 100 - progressPercentage
|
||||||
|
|
||||||
|
// 确保百分比在有效范围内
|
||||||
|
val safePercentage = countdownPercentage.coerceIn(0, 100)
|
||||||
|
|
||||||
|
// 更新进度条和百分比显示
|
||||||
|
progressBar.progress = safePercentage
|
||||||
|
progressPercentText.text = "$safePercentage%"
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onFinish() {
|
||||||
|
// 完成时设置进度为100%
|
||||||
|
progressBar.progress = 100
|
||||||
|
progressPercentText.text = "100%"
|
||||||
|
|
||||||
|
// 添加一个短暂的延迟,让用户看到100%的完成状态
|
||||||
|
Handler(Looper.getMainLooper()).postDelayed({
|
||||||
|
toHome()
|
||||||
|
}, 0)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 启动计时器
|
||||||
|
timer.start()
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun toHome() {
|
||||||
|
startActivity(Intent(this, MainActivity::class.java))
|
||||||
|
finish()
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onDestroy() {
|
||||||
|
super.onDestroy()
|
||||||
|
if (::timer.isInitialized) {
|
||||||
|
timer.cancel()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
153
app/src/main/java/com/app/wave/keyboard/utils/Comutils.kt
Normal file
@ -0,0 +1,153 @@
|
|||||||
|
package com.app.wave.keyboard.utils
|
||||||
|
|
||||||
|
import android.app.Activity
|
||||||
|
import android.content.Context
|
||||||
|
import android.graphics.BitmapFactory
|
||||||
|
import android.graphics.Color
|
||||||
|
import android.graphics.drawable.BitmapDrawable
|
||||||
|
import android.graphics.drawable.Drawable
|
||||||
|
import android.os.Build
|
||||||
|
import android.provider.Settings
|
||||||
|
import android.util.Log
|
||||||
|
import android.view.View
|
||||||
|
import android.view.WindowManager
|
||||||
|
import android.view.inputmethod.EditorInfo
|
||||||
|
import android.view.inputmethod.InputMethodManager
|
||||||
|
import android.widget.ImageView
|
||||||
|
import com.app.wave.keyboard.App
|
||||||
|
import com.bumptech.glide.Glide
|
||||||
|
import com.bumptech.glide.integration.webp.decoder.WebpDrawable
|
||||||
|
import com.bumptech.glide.load.DataSource
|
||||||
|
import com.bumptech.glide.load.engine.GlideException
|
||||||
|
import com.bumptech.glide.load.resource.bitmap.CenterCrop
|
||||||
|
import com.bumptech.glide.load.resource.bitmap.RoundedCorners
|
||||||
|
import com.bumptech.glide.request.RequestListener
|
||||||
|
import com.bumptech.glide.request.RequestOptions
|
||||||
|
import com.bumptech.glide.request.target.Target
|
||||||
|
import java.io.File
|
||||||
|
|
||||||
|
object Comutils {
|
||||||
|
|
||||||
|
val transform = RequestOptions().transform(CenterCrop(), RoundedCorners(dpToPx(8f)))
|
||||||
|
fun initFullScreen(activity: Activity, dark: Boolean? = true, showStatusBar: Boolean = false) {
|
||||||
|
val window = activity.window
|
||||||
|
val decorView = window.decorView
|
||||||
|
|
||||||
|
if (showStatusBar) {
|
||||||
|
// 显示状态栏,但保持透明
|
||||||
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
|
||||||
|
window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS)
|
||||||
|
window.statusBarColor = Color.TRANSPARENT
|
||||||
|
} else if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
|
||||||
|
window.addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS)
|
||||||
|
}
|
||||||
|
|
||||||
|
// 设置内容延伸到状态栏下
|
||||||
|
var flags = View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN or View.SYSTEM_UI_FLAG_LAYOUT_STABLE
|
||||||
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M && dark == false) {
|
||||||
|
flags = flags or View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR
|
||||||
|
}
|
||||||
|
decorView.systemUiVisibility = flags
|
||||||
|
} else {
|
||||||
|
// 使用真正的全屏标志
|
||||||
|
decorView.systemUiVisibility = (
|
||||||
|
View.SYSTEM_UI_FLAG_FULLSCREEN or
|
||||||
|
View.SYSTEM_UI_FLAG_HIDE_NAVIGATION or
|
||||||
|
View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY
|
||||||
|
)
|
||||||
|
|
||||||
|
// 移除状态栏的透明效果
|
||||||
|
window.clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS)
|
||||||
|
window.addFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
fun loadWepJif(mContext: Context, webpGifUrl: String, view: ImageView) {
|
||||||
|
Glide.with(mContext)
|
||||||
|
.load(webpGifUrl)
|
||||||
|
// .apply(transform)
|
||||||
|
.addListener(object : RequestListener<Drawable> {
|
||||||
|
override fun onLoadFailed(
|
||||||
|
e: GlideException?,
|
||||||
|
model: Any?,
|
||||||
|
target: Target<Drawable>,
|
||||||
|
isFirstResource: Boolean
|
||||||
|
): Boolean {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onResourceReady(
|
||||||
|
resource: Drawable,
|
||||||
|
model: Any,
|
||||||
|
target: Target<Drawable>,
|
||||||
|
dataSource: DataSource,
|
||||||
|
isFirstResource: Boolean
|
||||||
|
): Boolean {
|
||||||
|
if (resource is WebpDrawable) {
|
||||||
|
resource.loopCount = WebpDrawable.LOOP_FOREVER
|
||||||
|
}
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
}).into(view)
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
fun getBgDrawable(con: Context, filePath: String): Drawable? {
|
||||||
|
if (!File(filePath).exists()) {
|
||||||
|
return null
|
||||||
|
}
|
||||||
|
return BitmapDrawable(con.resources, BitmapFactory.decodeFile(filePath))
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
private val systemService =
|
||||||
|
App.Companion.appInstance.getSystemService(Context.INPUT_METHOD_SERVICE)
|
||||||
|
private val inputMethodManager = systemService as InputMethodManager
|
||||||
|
fun checkSetDefault(con: Context): Boolean {
|
||||||
|
// API 30+ 需要 QUERY_ALL_PACKAGES 权限
|
||||||
|
return try {
|
||||||
|
val defaultId =
|
||||||
|
Settings.Secure.getString(con.contentResolver, Settings.Secure.DEFAULT_INPUT_METHOD)
|
||||||
|
defaultId != null && defaultId.startsWith(con.packageName)
|
||||||
|
} catch (e: SecurityException) {
|
||||||
|
// API 30+ 可能没有权限访问
|
||||||
|
Log.e("Comutils", "Permission denied to check default input method", e)
|
||||||
|
false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fun checkEnable(con: Context): Boolean {
|
||||||
|
return try {
|
||||||
|
// 总是使用传入的 context
|
||||||
|
val inputMethodManager = con.getSystemService(Context.INPUT_METHOD_SERVICE) as InputMethodManager
|
||||||
|
|
||||||
|
// 添加空值检查
|
||||||
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
|
||||||
|
val enabledMethods = inputMethodManager.enabledInputMethodList
|
||||||
|
enabledMethods.any { methodInfo ->
|
||||||
|
methodInfo.id.startsWith(con.packageName)
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
// 旧版本的回退方案
|
||||||
|
true // 假设已启用,避免阻塞
|
||||||
|
}
|
||||||
|
} catch (e: SecurityException) {
|
||||||
|
Log.e("Comutils", "Permission denied checking enabled IMEs", e)
|
||||||
|
// 在 API 30+ 上,如果没有权限,假设已启用
|
||||||
|
true
|
||||||
|
} catch (e: Exception) {
|
||||||
|
Log.e("Comutils", "Error checking enabled IMEs", e)
|
||||||
|
true // 出错时假设已启用,让用户继续
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fun getTextForImeAction(imeOptions: Int): Int {
|
||||||
|
return imeOptions and EditorInfo.IME_MASK_ACTION
|
||||||
|
}
|
||||||
|
|
||||||
|
fun dpToPx(dpValue: Float): Int {
|
||||||
|
val scale = App.Companion.appInstance.resources.displayMetrics.density
|
||||||
|
return (dpValue * scale + 0.5f).toInt()
|
||||||
|
}
|
||||||
|
}
|
||||||
106
app/src/main/java/com/app/wave/keyboard/utils/ConfigFile.java
Normal file
@ -0,0 +1,106 @@
|
|||||||
|
package com.app.wave.keyboard.utils;
|
||||||
|
|
||||||
|
import com.app.wave.keyboard.kbhelper.KBModel;
|
||||||
|
import com.app.wave.keyboard.kbhelper.RespConfig;
|
||||||
|
import com.app.wave.keyboard.kbhelper.RespLayout;
|
||||||
|
|
||||||
|
import java.io.BufferedReader;
|
||||||
|
import java.io.FileReader;
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.util.LinkedHashMap;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
public class ConfigFile {
|
||||||
|
|
||||||
|
public static RespConfig initConfig(String path) {
|
||||||
|
String filePath = "keyboard.conf"; // 文件路径
|
||||||
|
RespConfig config = parseConfig(path);
|
||||||
|
return config;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static RespConfig parseConfig(String filePath) {
|
||||||
|
// InputStream open = App.appInstance.getAssets().open(filePath);
|
||||||
|
RespConfig config = new RespConfig();
|
||||||
|
try (BufferedReader br = new BufferedReader(new FileReader(filePath))) {
|
||||||
|
String line;
|
||||||
|
RespLayout currentLayout = null;
|
||||||
|
while ((line = br.readLine()) != null) {
|
||||||
|
line = line.trim();
|
||||||
|
if (line.isEmpty()) {
|
||||||
|
continue; // 跳过空行
|
||||||
|
}
|
||||||
|
if (line.startsWith("Version:")) {
|
||||||
|
config.setVersion(line.split(":")[1].trim());
|
||||||
|
} else if (line.startsWith("SupportLayouts:")) {
|
||||||
|
config.setSupportLayouts(line.split(":")[1].trim());
|
||||||
|
} else if (line.startsWith("HideHint:")) {
|
||||||
|
config.setHideHint(Integer.parseInt(line.split(":")[1].trim()));
|
||||||
|
} else if (line.startsWith("LayoutStyle:")) {
|
||||||
|
config.setLayoutStyle(line.split(":")[1].trim());
|
||||||
|
} else if (line.equals("KeyDefault") || line.equals("KeyMarkDefault") || line.equals("KeyFuncDefault")) {
|
||||||
|
LinkedHashMap<String, String> maps = config.getMaps();
|
||||||
|
maps.put(line, "");
|
||||||
|
} else if (line.contains(":") && currentLayout == null) {
|
||||||
|
String[] parts = line.split(":");
|
||||||
|
String keyName = parts[0].trim();
|
||||||
|
String keyValue = parts[1].trim();
|
||||||
|
|
||||||
|
String latestKey = null;
|
||||||
|
LinkedHashMap<String, String> maps = config.getMaps();
|
||||||
|
for (Map.Entry<String, String> entry : maps.entrySet()) {
|
||||||
|
latestKey = entry.getKey();
|
||||||
|
}
|
||||||
|
if (latestKey != null) {
|
||||||
|
maps.put(latestKey, keyValue);
|
||||||
|
}
|
||||||
|
} else if (line.startsWith("Row")) {
|
||||||
|
currentLayout = new RespLayout(line.split(":")[0].trim());
|
||||||
|
config.addLayout(currentLayout);
|
||||||
|
} else if (currentLayout != null) {
|
||||||
|
if (line.equals("Key")) {
|
||||||
|
String[] parts = line.split(":");
|
||||||
|
String keyName = parts[0].trim();
|
||||||
|
KBModel KBModel = new KBModel(keyName);
|
||||||
|
currentLayout.addKey(KBModel);
|
||||||
|
} else if (line.contains(":") && currentLayout.getLastKey().getBackground() == null) {
|
||||||
|
// 解析按键的其他属性(如 Label)
|
||||||
|
String[] parts = line.split(":");
|
||||||
|
String keyName = parts[0].trim();
|
||||||
|
String keyValue = parts[1].trim();
|
||||||
|
KBModel KBModel = currentLayout.getLastKey();
|
||||||
|
if (keyName.equals("Label")) {
|
||||||
|
KBModel.setLabel(keyValue);
|
||||||
|
}
|
||||||
|
if (keyName.equals("Background")) {
|
||||||
|
KBModel.setBackground(keyValue);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if (line.equals("KeyShift") || line.equals("KeyDelete") || line.equals("KeyAlphaSymbol") || line.equals("KeyEmoji")
|
||||||
|
|| line.equals("KeyMark")
|
||||||
|
|| line.equals("KeySpace")
|
||||||
|
|| line.equals("KeyEnter")) {
|
||||||
|
KBModel funcationKBModel = new KBModel(line);
|
||||||
|
config.addKey(funcationKBModel);
|
||||||
|
} else if (line.contains(":")) {
|
||||||
|
String[] parts = line.split(":");
|
||||||
|
String keyName = parts[0].trim();
|
||||||
|
String keyValue = parts[1].trim();
|
||||||
|
KBModel lastKBModel = config.getLastKeyList();
|
||||||
|
if (keyName.equals("Label")) {
|
||||||
|
lastKBModel.setLabel(keyValue);
|
||||||
|
}
|
||||||
|
if (keyName.equals("Background")) {
|
||||||
|
lastKBModel.setBackground(keyValue);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (IOException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
return config;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
293
app/src/main/java/com/app/wave/keyboard/utils/FastBlurUtil.java
Normal file
@ -0,0 +1,293 @@
|
|||||||
|
package com.app.wave.keyboard.utils;
|
||||||
|
|
||||||
|
import android.content.Context;
|
||||||
|
import android.graphics.Bitmap;
|
||||||
|
import android.graphics.Canvas;
|
||||||
|
import android.graphics.Color;
|
||||||
|
import android.graphics.Paint;
|
||||||
|
import android.graphics.drawable.BitmapDrawable;
|
||||||
|
import android.graphics.drawable.Drawable;
|
||||||
|
|
||||||
|
public class FastBlurUtil {
|
||||||
|
|
||||||
|
public static Bitmap fastBlur(Bitmap sentBitmap, int radius, boolean canReuseInBitmap) {
|
||||||
|
// 图片缩放比例,提高模糊效率
|
||||||
|
int scaleRatio = 8;
|
||||||
|
int blurRadius = radius;
|
||||||
|
|
||||||
|
if (sentBitmap == null || sentBitmap.isRecycled()) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
int width = Math.max(sentBitmap.getWidth() / scaleRatio, 1);
|
||||||
|
int height = Math.max(sentBitmap.getHeight() / scaleRatio, 1);
|
||||||
|
|
||||||
|
Bitmap bitmap = sentBitmap.copy(sentBitmap.getConfig() != null ? sentBitmap.getConfig() : Bitmap.Config.ARGB_8888, true);
|
||||||
|
|
||||||
|
if (canReuseInBitmap) {
|
||||||
|
bitmap = sentBitmap;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 创建缩放后的Bitmap
|
||||||
|
Bitmap scaledBitmap = Bitmap.createScaledBitmap(bitmap, width, height, false);
|
||||||
|
|
||||||
|
// 进行模糊处理
|
||||||
|
Bitmap blurredBitmap = doBlur(scaledBitmap, blurRadius, true);
|
||||||
|
|
||||||
|
// 缩放回原始尺寸
|
||||||
|
Bitmap resultBitmap = Bitmap.createScaledBitmap(blurredBitmap, sentBitmap.getWidth(), sentBitmap.getHeight(), false);
|
||||||
|
|
||||||
|
// 清理临时Bitmap
|
||||||
|
if (scaledBitmap != null && scaledBitmap != blurredBitmap) {
|
||||||
|
scaledBitmap.recycle();
|
||||||
|
}
|
||||||
|
if (blurredBitmap != null && blurredBitmap != resultBitmap) {
|
||||||
|
blurredBitmap.recycle();
|
||||||
|
}
|
||||||
|
|
||||||
|
return resultBitmap;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static Bitmap doBlur(Bitmap sentBitmap, int radius, boolean canReuseInBitmap) {
|
||||||
|
Bitmap bitmap;
|
||||||
|
if (canReuseInBitmap) {
|
||||||
|
bitmap = sentBitmap;
|
||||||
|
} else {
|
||||||
|
bitmap = sentBitmap.copy(sentBitmap.getConfig(), true);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (radius < 1) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
int w = bitmap.getWidth();
|
||||||
|
int h = bitmap.getHeight();
|
||||||
|
|
||||||
|
int[] pix = new int[w * h];
|
||||||
|
bitmap.getPixels(pix, 0, w, 0, 0, w, h);
|
||||||
|
|
||||||
|
int wm = w - 1;
|
||||||
|
int hm = h - 1;
|
||||||
|
int wh = w * h;
|
||||||
|
int div = radius + radius + 1;
|
||||||
|
|
||||||
|
int[] r = new int[wh];
|
||||||
|
int[] g = new int[wh];
|
||||||
|
int[] b = new int[wh];
|
||||||
|
int rsum, gsum, bsum, x, y, i, p, yp, yi, yw;
|
||||||
|
int[] vmin = new int[Math.max(w, h)];
|
||||||
|
|
||||||
|
int divsum = (div + 1) >> 1;
|
||||||
|
divsum *= divsum;
|
||||||
|
int[] dv = new int[256 * divsum];
|
||||||
|
for (i = 0; i < 256 * divsum; i++) {
|
||||||
|
dv[i] = (i / divsum);
|
||||||
|
}
|
||||||
|
|
||||||
|
yw = yi = 0;
|
||||||
|
|
||||||
|
int[][] stack = new int[div][3];
|
||||||
|
int stackpointer;
|
||||||
|
int stackstart;
|
||||||
|
int[] sir;
|
||||||
|
int rbs;
|
||||||
|
int r1 = radius + 1;
|
||||||
|
int routsum, goutsum, boutsum;
|
||||||
|
int rinsum, ginsum, binsum;
|
||||||
|
|
||||||
|
for (y = 0; y < h; y++) {
|
||||||
|
rinsum = ginsum = binsum = routsum = goutsum = boutsum = rsum = gsum = bsum = 0;
|
||||||
|
for (i = -radius; i <= radius; i++) {
|
||||||
|
p = pix[Math.min(wm, Math.max(i, 0)) + y * w];
|
||||||
|
sir = stack[i + radius];
|
||||||
|
sir[0] = (p & 0xff0000) >> 16;
|
||||||
|
sir[1] = (p & 0x00ff00) >> 8;
|
||||||
|
sir[2] = (p & 0x0000ff);
|
||||||
|
rbs = r1 - Math.abs(i);
|
||||||
|
rsum += sir[0] * rbs;
|
||||||
|
gsum += sir[1] * rbs;
|
||||||
|
bsum += sir[2] * rbs;
|
||||||
|
if (i > 0) {
|
||||||
|
rinsum += sir[0];
|
||||||
|
ginsum += sir[1];
|
||||||
|
binsum += sir[2];
|
||||||
|
} else {
|
||||||
|
routsum += sir[0];
|
||||||
|
goutsum += sir[1];
|
||||||
|
boutsum += sir[2];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stackpointer = radius;
|
||||||
|
|
||||||
|
for (x = 0; x < w; x++) {
|
||||||
|
r[yi] = dv[rsum];
|
||||||
|
g[yi] = dv[gsum];
|
||||||
|
b[yi] = dv[bsum];
|
||||||
|
|
||||||
|
rsum -= routsum;
|
||||||
|
gsum -= goutsum;
|
||||||
|
bsum -= boutsum;
|
||||||
|
|
||||||
|
stackstart = stackpointer - radius + div;
|
||||||
|
sir = stack[stackstart % div];
|
||||||
|
|
||||||
|
routsum -= sir[0];
|
||||||
|
goutsum -= sir[1];
|
||||||
|
boutsum -= sir[2];
|
||||||
|
|
||||||
|
if (y == 0) {
|
||||||
|
vmin[x] = Math.min(x + radius + 1, wm);
|
||||||
|
}
|
||||||
|
p = pix[vmin[x] + y * w];
|
||||||
|
|
||||||
|
sir[0] = (p & 0xff0000) >> 16;
|
||||||
|
sir[1] = (p & 0x00ff00) >> 8;
|
||||||
|
sir[2] = (p & 0x0000ff);
|
||||||
|
rinsum += sir[0];
|
||||||
|
ginsum += sir[1];
|
||||||
|
binsum += sir[2];
|
||||||
|
rsum += rinsum;
|
||||||
|
gsum += ginsum;
|
||||||
|
bsum += binsum;
|
||||||
|
|
||||||
|
stackpointer = (stackpointer + 1) % div;
|
||||||
|
sir = stack[(stackpointer) % div];
|
||||||
|
|
||||||
|
routsum += sir[0];
|
||||||
|
goutsum += sir[1];
|
||||||
|
boutsum += sir[2];
|
||||||
|
|
||||||
|
rinsum -= sir[0];
|
||||||
|
ginsum -= sir[1];
|
||||||
|
binsum -= sir[2];
|
||||||
|
|
||||||
|
yi++;
|
||||||
|
}
|
||||||
|
yw += w;
|
||||||
|
}
|
||||||
|
for (x = 0; x < w; x++) {
|
||||||
|
rinsum = ginsum = binsum = routsum = goutsum = boutsum = rsum = gsum = bsum = 0;
|
||||||
|
yp = -radius * w;
|
||||||
|
for (i = -radius; i <= radius; i++) {
|
||||||
|
yi = Math.max(0, yp) + x;
|
||||||
|
|
||||||
|
sir = stack[i + radius];
|
||||||
|
|
||||||
|
sir[0] = r[yi];
|
||||||
|
sir[1] = g[yi];
|
||||||
|
sir[2] = b[yi];
|
||||||
|
|
||||||
|
rbs = r1 - Math.abs(i);
|
||||||
|
|
||||||
|
rsum += sir[0] * rbs;
|
||||||
|
gsum += sir[1] * rbs;
|
||||||
|
bsum += sir[2] * rbs;
|
||||||
|
|
||||||
|
if (i > 0) {
|
||||||
|
rinsum += sir[0];
|
||||||
|
ginsum += sir[1];
|
||||||
|
binsum += sir[2];
|
||||||
|
} else {
|
||||||
|
routsum += sir[0];
|
||||||
|
goutsum += sir[1];
|
||||||
|
boutsum += sir[2];
|
||||||
|
}
|
||||||
|
|
||||||
|
if (i < hm) {
|
||||||
|
yp += w;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
yi = x;
|
||||||
|
stackpointer = radius;
|
||||||
|
for (y = 0; y < h; y++) {
|
||||||
|
// Preserve alpha channel: ( 0xff000000 & pix[yi] )
|
||||||
|
pix[yi] = (0xff000000 & pix[yi]) | (dv[rsum] << 16) | (dv[gsum] << 8) | dv[bsum];
|
||||||
|
|
||||||
|
rsum -= routsum;
|
||||||
|
gsum -= goutsum;
|
||||||
|
bsum -= boutsum;
|
||||||
|
|
||||||
|
stackstart = stackpointer - radius + div;
|
||||||
|
sir = stack[stackstart % div];
|
||||||
|
|
||||||
|
routsum -= sir[0];
|
||||||
|
goutsum -= sir[1];
|
||||||
|
boutsum -= sir[2];
|
||||||
|
|
||||||
|
if (x == 0) {
|
||||||
|
vmin[y] = Math.min(y + r1, hm) * w;
|
||||||
|
}
|
||||||
|
p = x + vmin[y];
|
||||||
|
|
||||||
|
sir[0] = r[p];
|
||||||
|
sir[1] = g[p];
|
||||||
|
sir[2] = b[p];
|
||||||
|
|
||||||
|
rinsum += sir[0];
|
||||||
|
ginsum += sir[1];
|
||||||
|
binsum += sir[2];
|
||||||
|
|
||||||
|
rsum += rinsum;
|
||||||
|
gsum += ginsum;
|
||||||
|
bsum += binsum;
|
||||||
|
|
||||||
|
stackpointer = (stackpointer + 1) % div;
|
||||||
|
sir = stack[stackpointer];
|
||||||
|
|
||||||
|
routsum += sir[0];
|
||||||
|
goutsum += sir[1];
|
||||||
|
boutsum += sir[2];
|
||||||
|
|
||||||
|
rinsum -= sir[0];
|
||||||
|
ginsum -= sir[1];
|
||||||
|
binsum -= sir[2];
|
||||||
|
|
||||||
|
yi += w;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
bitmap.setPixels(pix, 0, w, 0, 0, w, h);
|
||||||
|
|
||||||
|
return bitmap;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static Drawable blurDrawable(Drawable drawable, int blurRadius, Context context) {
|
||||||
|
if (drawable == null) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
// 将Drawable转换为Bitmap
|
||||||
|
Bitmap bitmap;
|
||||||
|
if (drawable instanceof BitmapDrawable) {
|
||||||
|
BitmapDrawable bitmapDrawable = (BitmapDrawable) drawable;
|
||||||
|
bitmap = bitmapDrawable.getBitmap();
|
||||||
|
if (bitmap == null || bitmap.isRecycled()) {
|
||||||
|
return drawable;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
// 非BitmapDrawable,创建新的Bitmap
|
||||||
|
bitmap = Bitmap.createBitmap(
|
||||||
|
drawable.getIntrinsicWidth(),
|
||||||
|
drawable.getIntrinsicHeight(),
|
||||||
|
Bitmap.Config.ARGB_8888
|
||||||
|
);
|
||||||
|
Canvas canvas = new Canvas(bitmap);
|
||||||
|
drawable.setBounds(0, 0, canvas.getWidth(), canvas.getHeight());
|
||||||
|
drawable.draw(canvas);
|
||||||
|
}
|
||||||
|
|
||||||
|
// 应用模糊
|
||||||
|
Bitmap blurredBitmap = fastBlur(bitmap, blurRadius, false);
|
||||||
|
|
||||||
|
if (blurredBitmap != null && !blurredBitmap.isRecycled()) {
|
||||||
|
return new BitmapDrawable(context.getResources(), blurredBitmap);
|
||||||
|
}
|
||||||
|
|
||||||
|
return drawable;
|
||||||
|
} catch (Exception e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
return drawable;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
76
app/src/main/java/com/app/wave/keyboard/utils/ItemDeco.java
Normal file
@ -0,0 +1,76 @@
|
|||||||
|
package com.app.wave.keyboard.utils;
|
||||||
|
|
||||||
|
import android.graphics.Rect;
|
||||||
|
import android.view.View;
|
||||||
|
|
||||||
|
import androidx.annotation.NonNull;
|
||||||
|
import androidx.recyclerview.widget.GridLayoutManager;
|
||||||
|
import androidx.recyclerview.widget.LinearLayoutManager;
|
||||||
|
import androidx.recyclerview.widget.RecyclerView;
|
||||||
|
import androidx.recyclerview.widget.StaggeredGridLayoutManager;
|
||||||
|
|
||||||
|
import com.app.wave.keyboard.App;
|
||||||
|
|
||||||
|
|
||||||
|
public class ItemDeco extends RecyclerView.ItemDecoration {
|
||||||
|
|
||||||
|
private int v, h, ex;
|
||||||
|
|
||||||
|
public ItemDeco(int v, int h, int ex) {
|
||||||
|
this.v = Math.round(dpToPx(v));
|
||||||
|
this.h = Math.round(dpToPx(h));
|
||||||
|
this.ex = Math.round(dpToPx(ex));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void getItemOffsets(@NonNull Rect outRect, @NonNull View view, @NonNull RecyclerView parent, @NonNull RecyclerView.State state) {
|
||||||
|
super.getItemOffsets(outRect, view, parent, state);
|
||||||
|
int spanCount = 1;
|
||||||
|
int spanSize = 1;
|
||||||
|
int spanIndex = 0;
|
||||||
|
|
||||||
|
int childAdapterPosition = parent.getChildAdapterPosition(view);
|
||||||
|
RecyclerView.LayoutManager layoutManager = parent.getLayoutManager();
|
||||||
|
if (layoutManager instanceof StaggeredGridLayoutManager) {
|
||||||
|
StaggeredGridLayoutManager staggeredGridLayoutManager = (StaggeredGridLayoutManager) layoutManager;
|
||||||
|
StaggeredGridLayoutManager.LayoutParams layoutParams = (StaggeredGridLayoutManager.LayoutParams) view.getLayoutParams();
|
||||||
|
spanCount = staggeredGridLayoutManager.getSpanCount();
|
||||||
|
if (layoutParams.isFullSpan()) {
|
||||||
|
spanSize = spanCount;
|
||||||
|
}
|
||||||
|
spanIndex = layoutParams.getSpanIndex();
|
||||||
|
} else if (layoutManager instanceof GridLayoutManager) {
|
||||||
|
GridLayoutManager gridLayoutManager = (GridLayoutManager) layoutManager;
|
||||||
|
GridLayoutManager.LayoutParams layoutParams = (GridLayoutManager.LayoutParams) view.getLayoutParams();
|
||||||
|
spanCount = gridLayoutManager.getSpanCount();
|
||||||
|
spanSize = gridLayoutManager.getSpanSizeLookup().getSpanSize(childAdapterPosition);
|
||||||
|
spanIndex = layoutParams.getSpanIndex();
|
||||||
|
} else if (layoutManager instanceof LinearLayoutManager) {
|
||||||
|
outRect.left = v;
|
||||||
|
outRect.right = v;
|
||||||
|
outRect.bottom = h;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (spanSize == spanCount) {
|
||||||
|
outRect.left = v + ex;
|
||||||
|
outRect.right = v + ex;
|
||||||
|
outRect.bottom = h;
|
||||||
|
|
||||||
|
} else {
|
||||||
|
int itemAllSpacing = (v * (spanCount + 1) + ex * 2) / spanCount;
|
||||||
|
int left = v * (spanIndex + 1) - itemAllSpacing * spanIndex + ex;
|
||||||
|
int right = itemAllSpacing - left;
|
||||||
|
outRect.left = left;
|
||||||
|
outRect.right = right;
|
||||||
|
outRect.bottom = h;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public static float dpToPx(float dpValue) {
|
||||||
|
float density = App.appInstance.getResources().getDisplayMetrics().density;
|
||||||
|
return density * dpValue + 0.5f;
|
||||||
|
}
|
||||||
|
}
|
||||||
181
app/src/main/java/com/app/wave/keyboard/utils/KBManager.kt
Normal file
@ -0,0 +1,181 @@
|
|||||||
|
package com.app.wave.keyboard.utils
|
||||||
|
|
||||||
|
import android.content.Context
|
||||||
|
import android.graphics.BitmapFactory
|
||||||
|
import android.graphics.Color
|
||||||
|
import android.graphics.drawable.BitmapDrawable
|
||||||
|
import android.graphics.drawable.Drawable
|
||||||
|
import android.graphics.drawable.StateListDrawable
|
||||||
|
import android.util.Xml
|
||||||
|
import androidx.core.content.ContextCompat
|
||||||
|
import com.app.wave.keyboard.App
|
||||||
|
import com.app.wave.keyboard.R
|
||||||
|
import com.app.wave.keyboard.kbhelper.RespConfig
|
||||||
|
import org.xmlpull.v1.XmlPullParser
|
||||||
|
import java.io.File
|
||||||
|
import java.io.StringReader
|
||||||
|
import kotlin.collections.iterator
|
||||||
|
|
||||||
|
class KBManager(var context: Context) {
|
||||||
|
|
||||||
|
|
||||||
|
private var textSize = 13f
|
||||||
|
|
||||||
|
var functionDraw: Drawable =
|
||||||
|
getDefaultDrawList(R.drawable.item_key_outline, R.drawable.item_key_pressed)
|
||||||
|
var generalDraw: Drawable =
|
||||||
|
getDefaultDrawList(R.drawable.item_key_outline, R.drawable.item_key_pressed)
|
||||||
|
|
||||||
|
var toDraw: Drawable = getDefaultDrawList(R.drawable.item_key_outline, R.drawable.item_key_pressed)
|
||||||
|
var spaceDraw: Drawable = getDefaultDrawList(R.drawable.item_key_outline, R.drawable.item_key_pressed)
|
||||||
|
|
||||||
|
var switchDraw: Drawable? = null
|
||||||
|
var deleteDraw: Drawable? = null
|
||||||
|
var backDraw: Drawable? = null
|
||||||
|
var searchDraw: Drawable? = null
|
||||||
|
|
||||||
|
var shiftDraw: Drawable? = null
|
||||||
|
var shiftLockDraw: Drawable? = null
|
||||||
|
|
||||||
|
var keyTextColor: Int = ContextCompat.getColor(context, R.color.black)
|
||||||
|
var keyTextColorFunction: Int = ContextCompat.getColor(context, R.color.black)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
fun getConfig(): RespConfig? {
|
||||||
|
val skinPath = SavePresentKB.getSkinPath()
|
||||||
|
val configFilePath = skinPath + "assets/keyboard.conf"
|
||||||
|
val file = File(configFilePath)
|
||||||
|
return if (file.exists()) {
|
||||||
|
ConfigFile.initConfig(configFilePath)
|
||||||
|
} else {
|
||||||
|
null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fun getConfigBg(name: String): Drawable? {
|
||||||
|
SavePresentKB.getSkinPath()?.let { resPath ->
|
||||||
|
val pPath = "${resPath}res/drawable-xhdpi-v4/"
|
||||||
|
|
||||||
|
return getDrawList(
|
||||||
|
pPath + name,
|
||||||
|
pPath + name
|
||||||
|
)
|
||||||
|
}
|
||||||
|
return null
|
||||||
|
}
|
||||||
|
|
||||||
|
fun updateSkinConfig() {
|
||||||
|
SavePresentKB.getSkinPath()?.let { resPath ->
|
||||||
|
val pPath = "${resPath}res/drawable-xhdpi-v4/"
|
||||||
|
pPath.let {
|
||||||
|
readColors(resPath) {
|
||||||
|
for ((name, value) in it) {
|
||||||
|
if (name == MyKeyName.keyTextColorName) {
|
||||||
|
keyTextColor = value
|
||||||
|
}
|
||||||
|
if (name == MyKeyName.keyTextColorFunctionName) {
|
||||||
|
keyTextColorFunction = value
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
functionDraw = getDrawList(
|
||||||
|
it + MyKeyName.functionNormalName,
|
||||||
|
it + MyKeyName.functionPressName
|
||||||
|
)
|
||||||
|
generalDraw = getDrawList(it + MyKeyName.normalName, it + MyKeyName.pressName)
|
||||||
|
toDraw = getDrawList(it + MyKeyName.toNormalName, it + MyKeyName.toPressName)
|
||||||
|
spaceDraw =
|
||||||
|
getDrawList(it + MyKeyName.spaceNormalName, it + MyKeyName.spacePressName)
|
||||||
|
switchDraw =
|
||||||
|
getDrawList(it + MyKeyName.imeSwitchName, it + MyKeyName.imeSwitchName)
|
||||||
|
deleteDraw = getDrawList(
|
||||||
|
it + MyKeyName.deleteNormalName,
|
||||||
|
it + MyKeyName.deletePressName
|
||||||
|
)
|
||||||
|
backDraw = getDrawList(it + MyKeyName.backName, it + MyKeyName.backName)
|
||||||
|
searchDraw = getDrawList(it + MyKeyName.searchName, it + MyKeyName.searchName)
|
||||||
|
shiftDraw = getDrawList(
|
||||||
|
it + MyKeyName.shiftNormalName,
|
||||||
|
it + MyKeyName.shiftNormalName
|
||||||
|
)
|
||||||
|
shiftLockDraw =
|
||||||
|
getDrawList(it + MyKeyName.shiftLockName, it + MyKeyName.shiftLockName)
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
private fun getDefaultDrawList(normalDrawId: Int, pressDrawId: Int): StateListDrawable {
|
||||||
|
val normalDraw = ContextCompat.getDrawable(App.Companion.appInstance, normalDrawId)
|
||||||
|
val pressDraw = ContextCompat.getDrawable(App.Companion.appInstance, pressDrawId)
|
||||||
|
val stateListDrawable = StateListDrawable().apply {
|
||||||
|
addState(
|
||||||
|
intArrayOf(android.R.attr.state_pressed),
|
||||||
|
pressDraw
|
||||||
|
)
|
||||||
|
addState(intArrayOf(), normalDraw)
|
||||||
|
}
|
||||||
|
|
||||||
|
return stateListDrawable
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
private fun getDrawList(normalPath: String, pressPath: String): StateListDrawable {
|
||||||
|
val pressDraw = BitmapFactory.decodeFile(pressPath)
|
||||||
|
val normalDraw = BitmapFactory.decodeFile(normalPath)
|
||||||
|
val stateListDrawable = StateListDrawable().apply {
|
||||||
|
addState(
|
||||||
|
intArrayOf(android.R.attr.state_pressed),
|
||||||
|
BitmapDrawable(context.resources, pressDraw)
|
||||||
|
)
|
||||||
|
addState(intArrayOf(), BitmapDrawable(context.resources, normalDraw))
|
||||||
|
}
|
||||||
|
|
||||||
|
return stateListDrawable
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun readColors(resPath: String, callBack: (Map<String, Int>) -> Unit) {
|
||||||
|
val resMaps = mutableMapOf<String, Int>()
|
||||||
|
|
||||||
|
val pPath = "${resPath}res/colors.xml"
|
||||||
|
val file = File(pPath)
|
||||||
|
if (file.exists()) {
|
||||||
|
val xmlPullParser = Xml.newPullParser().apply {
|
||||||
|
setInput(StringReader(file.readText()))
|
||||||
|
setFeature(XmlPullParser.FEATURE_PROCESS_NAMESPACES, false)
|
||||||
|
|
||||||
|
}
|
||||||
|
var curType = xmlPullParser.eventType
|
||||||
|
while (curType != XmlPullParser.END_DOCUMENT) {
|
||||||
|
val b = curType == XmlPullParser.START_TAG
|
||||||
|
val b1 = xmlPullParser.name == "color"
|
||||||
|
val b2 = xmlPullParser.name == "item"
|
||||||
|
if (b && (b1 || b2)) {
|
||||||
|
val attributeName = xmlPullParser.getAttributeValue(null, "name")
|
||||||
|
val nextTextValue = xmlPullParser.nextText()
|
||||||
|
val b3 = attributeName == MyKeyName.keyTextColorName
|
||||||
|
val b4 = attributeName == MyKeyName.keyTextColorFunctionName
|
||||||
|
if (b3 || b4) {
|
||||||
|
resMaps[attributeName] = Color.parseColor(nextTextValue)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
curType = xmlPullParser.next()
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
callBack.invoke(resMaps)
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
60
app/src/main/java/com/app/wave/keyboard/utils/MyKeyName.kt
Normal file
@ -0,0 +1,60 @@
|
|||||||
|
package com.app.wave.keyboard.utils
|
||||||
|
|
||||||
|
object MyKeyName {
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
const val KEY_CODE_DELETE = -5
|
||||||
|
|
||||||
|
|
||||||
|
//同一个按键
|
||||||
|
const val KEY_CODE_SHIFT = -1
|
||||||
|
const val KEY_CODE_NUMBER_SHIFT = -103
|
||||||
|
const val KEY_CODE_SYMBOL_SHIFT = -101
|
||||||
|
|
||||||
|
//同一个按键
|
||||||
|
const val KEY_CODE_CHANGE_NUMBER = -2
|
||||||
|
const val KEY_CODE_BACK = -102
|
||||||
|
|
||||||
|
|
||||||
|
const val KEY_CODE_COMPLETE = -4
|
||||||
|
const val KEY_CODE_CANCEL = -3
|
||||||
|
|
||||||
|
const val KEY_CODE_SPACE = 32
|
||||||
|
|
||||||
|
|
||||||
|
const val functionNormalName = "btn_keyboard_key_functional_normal.9.png"
|
||||||
|
const val functionPressName = "btn_keyboard_key_functional_pressed.9.png"
|
||||||
|
|
||||||
|
const val normalName = "btn_keyboard_key_normal_normal.9.png"
|
||||||
|
const val pressName = "btn_keyboard_key_normal_pressed.9.png"
|
||||||
|
|
||||||
|
const val toNormalName="btn_keyboard_key_toggle_normal_on.9.png"
|
||||||
|
const val toPressName="btn_keyboard_key_toggle_pressed_on.9.png"
|
||||||
|
|
||||||
|
const val spaceNormalName = "btn_keyboard_spacekey_normal_normal.9.png"
|
||||||
|
const val spacePressName = "btn_keyboard_spacekey_normal_pressed.9.png"
|
||||||
|
|
||||||
|
const val imeSwitchName ="ic_ime_switcher.png"
|
||||||
|
|
||||||
|
const val deleteNormalName = "sym_keyboard_delete_normal.png"
|
||||||
|
const val deletePressName = "sym_keyboard_delete_pressed.png"
|
||||||
|
|
||||||
|
const val backName ="sym_keyboard_return_normal.png"
|
||||||
|
|
||||||
|
const val searchName ="sym_keyboard_search.png"
|
||||||
|
|
||||||
|
const val shiftNormalName ="sym_keyboard_shift.png"
|
||||||
|
const val shiftLockName ="sym_keyboard_shift_locked.png"
|
||||||
|
|
||||||
|
const val keyTextColorName ="key_text_color_normal"
|
||||||
|
const val keyTextColorFunctionName ="key_text_color_functional"
|
||||||
|
|
||||||
|
const val videoName ="keyboard_background_video.mp4"
|
||||||
|
const val bgName ="keyboard_background.jpg"
|
||||||
|
const val bgName_png ="keyboard_background.png"
|
||||||
|
|
||||||
|
const val previewBg="keyboard_preview_screenshot.jpg"
|
||||||
|
|
||||||
|
const val video ="keyboard_background_video.gif"
|
||||||
|
}
|
||||||
@ -0,0 +1,19 @@
|
|||||||
|
package com.app.wave.keyboard.utils
|
||||||
|
|
||||||
|
import android.content.Context
|
||||||
|
import com.app.wave.keyboard.App
|
||||||
|
|
||||||
|
object SavePresentKB {
|
||||||
|
|
||||||
|
val SP_NAME = "keyboard_skin"
|
||||||
|
val SKIN_PATH = "skin_path"
|
||||||
|
val spSkin = App.Companion.appInstance.getSharedPreferences(SP_NAME,Context.MODE_PRIVATE)
|
||||||
|
|
||||||
|
fun updateSkinPath(skinPath:String){
|
||||||
|
spSkin.edit().putString(SKIN_PATH,skinPath).apply()
|
||||||
|
}
|
||||||
|
|
||||||
|
fun getSkinPath( ):String?{
|
||||||
|
return spSkin.getString(SKIN_PATH,null)
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,37 @@
|
|||||||
|
package com.app.wave.keyboard.utils;
|
||||||
|
|
||||||
|
import android.content.Context;
|
||||||
|
import android.content.res.TypedArray;
|
||||||
|
import android.util.AttributeSet;
|
||||||
|
import android.widget.TextView;
|
||||||
|
|
||||||
|
import androidx.annotation.Nullable;
|
||||||
|
|
||||||
|
import com.app.wave.keyboard.App;
|
||||||
|
import com.app.wave.keyboard.R;
|
||||||
|
|
||||||
|
|
||||||
|
public class TextVCustom extends androidx.appcompat.widget.AppCompatTextView {
|
||||||
|
|
||||||
|
|
||||||
|
public TextVCustom(Context context, @Nullable AttributeSet attrs) {
|
||||||
|
super(context, attrs);
|
||||||
|
initAttrs(context,attrs);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
private void initAttrs(Context context, AttributeSet attrs){
|
||||||
|
TypedArray typedArray = context.obtainStyledAttributes(attrs, R.styleable.MyTV);
|
||||||
|
boolean aBoolean = typedArray.getBoolean(R.styleable.MyTV_apply_font,false);
|
||||||
|
if(aBoolean){
|
||||||
|
initFont(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
typedArray.recycle();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void initFont(TextView tv) {
|
||||||
|
tv.setTypeface(App.Companion.getDefaultFont());
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
238
app/src/main/java/com/app/wave/keyboard/utils/ZipFile.java
Normal file
@ -0,0 +1,238 @@
|
|||||||
|
package com.app.wave.keyboard.utils;
|
||||||
|
|
||||||
|
import android.graphics.Bitmap;
|
||||||
|
import android.graphics.Canvas;
|
||||||
|
import android.graphics.drawable.BitmapDrawable;
|
||||||
|
import android.graphics.drawable.Drawable;
|
||||||
|
import android.util.Log;
|
||||||
|
|
||||||
|
import com.app.wave.keyboard.App;
|
||||||
|
import com.app.wave.keyboard.callback.SetKBCallback;
|
||||||
|
|
||||||
|
import net.sf.sevenzipjbinding.ArchiveFormat;
|
||||||
|
import net.sf.sevenzipjbinding.IArchiveOpenCallback;
|
||||||
|
import net.sf.sevenzipjbinding.IInArchive;
|
||||||
|
import net.sf.sevenzipjbinding.SevenZip;
|
||||||
|
import net.sf.sevenzipjbinding.SevenZipException;
|
||||||
|
import net.sf.sevenzipjbinding.impl.RandomAccessFileInStream;
|
||||||
|
import net.sf.sevenzipjbinding.impl.RandomAccessFileOutStream;
|
||||||
|
import net.sf.sevenzipjbinding.simple.ISimpleInArchive;
|
||||||
|
import net.sf.sevenzipjbinding.simple.ISimpleInArchiveItem;
|
||||||
|
|
||||||
|
import java.io.File;
|
||||||
|
import java.io.FileNotFoundException;
|
||||||
|
import java.io.FileOutputStream;
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.io.InputStream;
|
||||||
|
import java.io.RandomAccessFile;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.concurrent.TimeUnit;
|
||||||
|
|
||||||
|
import okhttp3.Call;
|
||||||
|
import okhttp3.Callback;
|
||||||
|
import okhttp3.MediaType;
|
||||||
|
import okhttp3.OkHttpClient;
|
||||||
|
import okhttp3.Request;
|
||||||
|
import okhttp3.Response;
|
||||||
|
|
||||||
|
public class ZipFile {
|
||||||
|
|
||||||
|
public static void startDownloadZip(String zipPath, SetKBCallback callback) {
|
||||||
|
OkHttpClient clientZip = new OkHttpClient().newBuilder().
|
||||||
|
connectTimeout(20, TimeUnit.SECONDS)
|
||||||
|
.writeTimeout(10, TimeUnit.SECONDS)
|
||||||
|
.readTimeout(10, TimeUnit.SECONDS).build();
|
||||||
|
Request.Builder builder = new Request.Builder();
|
||||||
|
Request request = builder.get().url(zipPath).build();
|
||||||
|
|
||||||
|
clientZip.newCall(request).enqueue(new Callback() {
|
||||||
|
@Override
|
||||||
|
public void onFailure(Call call, IOException e) {
|
||||||
|
callback.OnApplySkinListener(null);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onResponse(Call call, Response response) {
|
||||||
|
|
||||||
|
InputStream inputStream = response.body().byteStream();
|
||||||
|
long l = response.body().contentLength();
|
||||||
|
MediaType mediaType = response.body().contentType();
|
||||||
|
|
||||||
|
saveZipFile(inputStream, getServiceZipName(zipPath), callback);
|
||||||
|
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public static String getServiceZipName(String zipPath) {
|
||||||
|
String pointStr = "/";
|
||||||
|
int lastIndexOf = zipPath.lastIndexOf(pointStr);
|
||||||
|
String zipName = zipPath.substring(lastIndexOf + pointStr.length());
|
||||||
|
|
||||||
|
|
||||||
|
return zipName;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static String getunZipFolderName(String zipPath) {
|
||||||
|
String pointStr = ".";
|
||||||
|
int lastIndexOf = zipPath.lastIndexOf(pointStr);
|
||||||
|
String zipName = zipPath.substring(0, lastIndexOf);
|
||||||
|
|
||||||
|
|
||||||
|
return zipName;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void saveZipFile(InputStream inputStream, String zipFileName, SetKBCallback callback) {
|
||||||
|
File zipfFile = new File(App.appInstance.getFilesDir(), zipFileName);
|
||||||
|
|
||||||
|
Log.d("-------------------","-------zipFileName="+zipFileName);
|
||||||
|
byte[] bytes = new byte[4096];
|
||||||
|
int readLength = 0;
|
||||||
|
InputStream is = inputStream;
|
||||||
|
FileOutputStream fileOs = null;
|
||||||
|
try {
|
||||||
|
fileOs = new FileOutputStream(zipfFile);
|
||||||
|
|
||||||
|
while ((readLength = is.read(bytes)) != -1) {
|
||||||
|
fileOs.write(bytes, 0, readLength);
|
||||||
|
}
|
||||||
|
fileOs.flush();
|
||||||
|
|
||||||
|
} catch (Exception exception) {
|
||||||
|
|
||||||
|
} finally {
|
||||||
|
try {
|
||||||
|
if (is != null) {
|
||||||
|
is.close();
|
||||||
|
}
|
||||||
|
if (fileOs != null) {
|
||||||
|
fileOs.close();
|
||||||
|
}
|
||||||
|
} catch (IOException ioException) {
|
||||||
|
|
||||||
|
}
|
||||||
|
un7ZZipFile(zipfFile, callback);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public static String getUnzipPath(String zipName){
|
||||||
|
String folderName = getunZipFolderName(zipName);
|
||||||
|
String replace = folderName.replace(".", "");
|
||||||
|
return App.appInstance.getFilesDir().getPath() + "/" + replace;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void un7ZZipFile(File saveZipFile, SetKBCallback callback) {
|
||||||
|
List<File> fileList = new ArrayList<>();
|
||||||
|
|
||||||
|
String unzipFolderPath = getUnzipPath(saveZipFile.getName());
|
||||||
|
|
||||||
|
try {
|
||||||
|
RandomAccessFileInStream inStream = new RandomAccessFileInStream(new RandomAccessFile(saveZipFile, "r"));
|
||||||
|
IInArchive open = SevenZip.openInArchive(ArchiveFormat.SEVEN_ZIP, inStream, new IArchiveOpenCallback() {
|
||||||
|
@Override
|
||||||
|
public void setTotal(Long files, Long bytes) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void setCompleted(Long files, Long bytes) {
|
||||||
|
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
ISimpleInArchive simple = open.getSimpleInterface();
|
||||||
|
for (ISimpleInArchiveItem archiveItem : simple.getArchiveItems()) {
|
||||||
|
RandomAccessFileOutStream outStream = null;
|
||||||
|
try {
|
||||||
|
File itemFile;
|
||||||
|
if (archiveItem.isFolder()) {
|
||||||
|
File itemFolder = new File(unzipFolderPath, archiveItem.getPath());
|
||||||
|
boolean mkdirs = itemFolder.mkdirs();
|
||||||
|
continue;
|
||||||
|
} else {
|
||||||
|
itemFile = new File(unzipFolderPath, archiveItem.getPath());
|
||||||
|
if (!itemFile.getParentFile().exists()) {
|
||||||
|
boolean mkdirs = itemFile.getParentFile().mkdirs();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
outStream = new RandomAccessFileOutStream(new RandomAccessFile(itemFile, "rw"));
|
||||||
|
archiveItem.extractSlow(outStream);
|
||||||
|
fileList.add(itemFile);
|
||||||
|
} finally {
|
||||||
|
if (outStream != null) {
|
||||||
|
outStream.close();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
inStream.close();
|
||||||
|
open.close();
|
||||||
|
|
||||||
|
} catch (FileNotFoundException | SevenZipException exception) {
|
||||||
|
|
||||||
|
} catch (IOException ioException) {
|
||||||
|
|
||||||
|
} finally {
|
||||||
|
if (saveZipFile.exists()) {
|
||||||
|
|
||||||
|
saveZipFile.delete();
|
||||||
|
|
||||||
|
}
|
||||||
|
callback.OnApplySkinListener(fileList);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public static File findFirstDirectory(File dir) {
|
||||||
|
if (dir.isDirectory()) {
|
||||||
|
File[] files = dir.listFiles();
|
||||||
|
if (files != null) {
|
||||||
|
for (File file : files) {
|
||||||
|
if (file.isDirectory()) {
|
||||||
|
return file; // 返回第一个文件目录
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return null; // 如果没有找到文件目录,则返回null
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
private static Bitmap drawableToBitmap(Drawable drawable) {
|
||||||
|
if (drawable instanceof BitmapDrawable) {
|
||||||
|
return ((BitmapDrawable) drawable).getBitmap();
|
||||||
|
}
|
||||||
|
|
||||||
|
// 如果不是 BitmapDrawable,则创建一个空的 Bitmap 对象
|
||||||
|
Bitmap bitmap = Bitmap.createBitmap(drawable.getIntrinsicWidth(),
|
||||||
|
drawable.getIntrinsicHeight(),
|
||||||
|
Bitmap.Config.ARGB_8888);
|
||||||
|
Canvas canvas = new Canvas(bitmap);
|
||||||
|
drawable.setBounds(0, 0, canvas.getWidth(), canvas.getHeight());
|
||||||
|
drawable.draw(canvas);
|
||||||
|
return bitmap;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 将 Bitmap 保存到文件
|
||||||
|
private static void saveBitmapToFile(Bitmap bitmap, File file) throws IOException {
|
||||||
|
if(!file.exists()){
|
||||||
|
file.createNewFile();
|
||||||
|
}
|
||||||
|
FileOutputStream out = new FileOutputStream(file);
|
||||||
|
bitmap.compress(Bitmap.CompressFormat.PNG, 100, out); // 保存为 PNG 格式
|
||||||
|
out.flush();
|
||||||
|
out.close();
|
||||||
|
}
|
||||||
|
|
||||||
|
// 示例:将 Drawable 写入文件
|
||||||
|
public static void saveDrawableToFile(Drawable drawable, File file) throws IOException {
|
||||||
|
Bitmap bitmap = drawableToBitmap(drawable);
|
||||||
|
saveBitmapToFile(bitmap, file);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
5
app/src/main/res/drawable/dialog_bg.xml
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<corners android:radius="18dp" />
|
||||||
|
<solid android:color="@color/card_bg" />
|
||||||
|
</shape>
|
||||||
6
app/src/main/res/drawable/dialog_cancel.xml
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<corners android:radius="8dp" />
|
||||||
|
<solid android:color="@color/button_cancel_bg" />
|
||||||
|
|
||||||
|
</shape>
|
||||||
6
app/src/main/res/drawable/dialog_rateit.xml
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<corners android:radius="8dp" />
|
||||||
|
<solid android:color="@color/button_rate_bg" />
|
||||||
|
|
||||||
|
</shape>
|
||||||
6
app/src/main/res/drawable/dialog_rateit_outline.xml
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<corners android:radius="8dp" />
|
||||||
|
<solid android:color="@color/button_rate_bg_disabled" />
|
||||||
|
|
||||||
|
</shape>
|
||||||
7
app/src/main/res/drawable/dialog_setkeyboard.xml
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:shape="rectangle">
|
||||||
|
<solid android:color="@color/button_rate_bg" />
|
||||||
|
<corners android:radius="12dp" />
|
||||||
|
|
||||||
|
</shape>
|
||||||
7
app/src/main/res/drawable/dialog_setkeyboard_outline.xml
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:shape="rectangle">
|
||||||
|
<solid android:color="@color/apply_step_false" />
|
||||||
|
<corners android:radius="12dp" />
|
||||||
|
|
||||||
|
</shape>
|
||||||
7
app/src/main/res/drawable/edittext_bg.xml
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:shape="rectangle">
|
||||||
|
<corners android:radius="10dp"/>
|
||||||
|
<solid android:color="@color/white"/>
|
||||||
|
|
||||||
|
</shape>
|
||||||
6
app/src/main/res/drawable/icon_bg.xml
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:shape="rectangle">
|
||||||
|
<solid android:color="@color/ic_bg" />
|
||||||
|
<corners android:radius="23dp" />
|
||||||
|
</shape>
|
||||||
6
app/src/main/res/drawable/item_favouritetab.xml
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<item android:drawable="@mipmap/mainac_collection_outline" android:state_selected="false"/>
|
||||||
|
<item android:drawable="@mipmap/mainac_collection" android:state_selected="true" />
|
||||||
|
|
||||||
|
</selector>
|
||||||
6
app/src/main/res/drawable/item_hometab.xml
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<item android:drawable="@mipmap/mainac_home_outline" android:state_selected="false"/>
|
||||||
|
<item android:drawable="@mipmap/mainac_home" android:state_selected="true" />
|
||||||
|
|
||||||
|
</selector>
|
||||||
BIN
app/src/main/res/drawable/item_key_outline.png
Normal file
|
After Width: | Height: | Size: 481 B |
BIN
app/src/main/res/drawable/item_key_pressed.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
app/src/main/res/drawable/placeholder.png
Normal file
|
After Width: | Height: | Size: 12 KiB |
26
app/src/main/res/drawable/progressbar_custom.xml
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
|
||||||
|
<!-- 进度条背景轨道 -->
|
||||||
|
<item android:id="@android:id/background">
|
||||||
|
<shape>
|
||||||
|
<corners android:radius="7dp" />
|
||||||
|
<solid android:color="@color/launch_progress_bg" />
|
||||||
|
<!-- 添加边框增加层次感 -->
|
||||||
|
<stroke
|
||||||
|
android:width="1dp"
|
||||||
|
android:color="#D1D5DB" />
|
||||||
|
</shape>
|
||||||
|
</item>
|
||||||
|
|
||||||
|
<!-- 主进度条 - 使用纯色 -->
|
||||||
|
<item android:id="@android:id/progress">
|
||||||
|
<clip>
|
||||||
|
<shape>
|
||||||
|
<corners android:radius="7dp" />
|
||||||
|
<solid android:color="@color/launch_progress" />
|
||||||
|
</shape>
|
||||||
|
</clip>
|
||||||
|
</item>
|
||||||
|
|
||||||
|
</layer-list>
|
||||||
6
app/src/main/res/drawable/selector_collection.xml
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<item android:drawable="@mipmap/icon_starblack" android:state_selected="false"/>
|
||||||
|
<item android:drawable="@mipmap/icon_star" android:state_selected="true" />
|
||||||
|
|
||||||
|
</selector>
|
||||||
15
app/src/main/res/drawable/selector_keyboard_preview.xml
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<item android:state_pressed="false">
|
||||||
|
<shape android:shape="rectangle">
|
||||||
|
<corners android:radius="4dp"/>
|
||||||
|
<solid android:color="@color/white"/>
|
||||||
|
</shape>
|
||||||
|
</item>
|
||||||
|
<item android:state_pressed="true">
|
||||||
|
<shape android:shape="rectangle">
|
||||||
|
<corners android:radius="4dp"/>
|
||||||
|
<solid android:color="@color/key_bg_press"/>
|
||||||
|
</shape>
|
||||||
|
</item>
|
||||||
|
</selector>
|
||||||
6
app/src/main/res/drawable/selector_setkeyboard.xml
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
|
||||||
|
<item android:drawable="@drawable/dialog_setkeyboard" android:state_selected="false" />
|
||||||
|
<item android:drawable="@drawable/dialog_setkeyboard_outline" />
|
||||||
|
</selector>
|
||||||
12
app/src/main/res/drawable/tab_ripple_effect.xml
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:color="@color/tab_ripple">
|
||||||
|
|
||||||
|
<item android:id="@android:id/mask">
|
||||||
|
<shape android:shape="rectangle">
|
||||||
|
<solid android:color="@android:color/white" />
|
||||||
|
<corners android:radius="16dp" />
|
||||||
|
</shape>
|
||||||
|
</item>
|
||||||
|
|
||||||
|
</ripple>
|
||||||
BIN
app/src/main/res/font/alimama_shuheiti_.otf
Normal file
66
app/src/main/res/layout/activity_apply.xml
Normal file
@ -0,0 +1,66 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||||
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:id="@+id/main"
|
||||||
|
android:layout_height="wrap_content">
|
||||||
|
|
||||||
|
<RelativeLayout
|
||||||
|
android:id="@+id/relayout"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent">
|
||||||
|
|
||||||
|
<View
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
android:background="@color/bg_loading" />
|
||||||
|
|
||||||
|
<EditText
|
||||||
|
android:id="@+id/et"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="50dp"
|
||||||
|
android:layout_alignParentBottom="true"
|
||||||
|
android:layout_marginStart="5dp"
|
||||||
|
android:layout_marginTop="50dp"
|
||||||
|
android:layout_marginEnd="5dp"
|
||||||
|
android:background="@drawable/edittext_bg"
|
||||||
|
android:focusable="true"
|
||||||
|
android:focusableInTouchMode="true"
|
||||||
|
android:hint="@string/et_hint"
|
||||||
|
android:paddingStart="15dp"
|
||||||
|
android:textColor="@color/black"
|
||||||
|
android:textColorHint="@color/apply_step_false"
|
||||||
|
android:textCursorDrawable="@color/color_74CBFF" />
|
||||||
|
</RelativeLayout>
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/id_back"
|
||||||
|
android:layout_width="44dp"
|
||||||
|
android:layout_height="44dp"
|
||||||
|
android:layout_marginTop="5dp"
|
||||||
|
android:paddingStart="5dp"
|
||||||
|
android:paddingTop="10dp"
|
||||||
|
android:paddingBottom="10dp"
|
||||||
|
android:src="@mipmap/icon_back" />
|
||||||
|
|
||||||
|
<com.app.wave.keyboard.utils.TextVCustom
|
||||||
|
android:id="@+id/title"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_alignTop="@id/id_back"
|
||||||
|
android:layout_alignBottom="@id/id_back"
|
||||||
|
android:layout_centerHorizontal="true"
|
||||||
|
android:ellipsize="end"
|
||||||
|
android:gravity="center"
|
||||||
|
android:maxLines="1"
|
||||||
|
android:paddingStart="5dp"
|
||||||
|
android:paddingEnd="5dp"
|
||||||
|
android:text="@string/app_name"
|
||||||
|
android:textColor="@color/white"
|
||||||
|
android:textSize="18sp"
|
||||||
|
app:apply_font="true" />
|
||||||
|
|
||||||
|
|
||||||
|
</RelativeLayout>
|
||||||
|
|
||||||
256
app/src/main/res/layout/activity_keyboard_preview.xml
Normal file
@ -0,0 +1,256 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||||
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
|
android:id="@+id/main"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
android:background="@color/tab_background">
|
||||||
|
|
||||||
|
<!-- ==================== 顶部键盘详情部分 ==================== -->
|
||||||
|
<androidx.cardview.widget.CardView
|
||||||
|
android:id="@+id/top_section_card"
|
||||||
|
android:layout_width="0dp"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginBottom="8dp"
|
||||||
|
app:cardElevation="12dp"
|
||||||
|
app:cardCornerRadius="0dp"
|
||||||
|
app:cardBackgroundColor="@android:color/transparent"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintTop_toTopOf="parent">
|
||||||
|
|
||||||
|
<androidx.constraintlayout.widget.ConstraintLayout
|
||||||
|
android:id="@+id/top_section"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:paddingBottom="16dp"
|
||||||
|
android:background="@color/tab_background">
|
||||||
|
|
||||||
|
<!-- 返回按钮 -->
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/back"
|
||||||
|
android:layout_width="44dp"
|
||||||
|
android:layout_height="44dp"
|
||||||
|
android:layout_marginTop="5dp"
|
||||||
|
android:paddingStart="5dp"
|
||||||
|
android:paddingTop="10dp"
|
||||||
|
android:paddingBottom="10dp"
|
||||||
|
android:src="@mipmap/icon_back"
|
||||||
|
android:tint="@color/text_color"
|
||||||
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintTop_toTopOf="parent" />
|
||||||
|
|
||||||
|
<!-- 标题 -->
|
||||||
|
<com.app.wave.keyboard.utils.TextVCustom
|
||||||
|
android:id="@+id/textview_data_name"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="@string/app_name"
|
||||||
|
android:textColor="@color/text_color"
|
||||||
|
android:textSize="18sp"
|
||||||
|
android:textStyle="bold"
|
||||||
|
app:apply_font="true"
|
||||||
|
app:layout_constraintBottom_toBottomOf="@id/back"
|
||||||
|
app:layout_constraintEnd_toStartOf="@+id/im_like"
|
||||||
|
app:layout_constraintStart_toEndOf="@id/back"
|
||||||
|
app:layout_constraintTop_toTopOf="@id/back" />
|
||||||
|
|
||||||
|
<!-- 收藏按钮 -->
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/im_like"
|
||||||
|
android:layout_width="44dp"
|
||||||
|
android:layout_height="44dp"
|
||||||
|
android:layout_marginEnd="12dp"
|
||||||
|
android:padding="9dp"
|
||||||
|
android:src="@drawable/selector_collection"
|
||||||
|
app:layout_constraintBottom_toBottomOf="@id/back"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
|
app:layout_constraintTop_toTopOf="@id/back" />
|
||||||
|
|
||||||
|
<!-- 键盘预览卡片 -->
|
||||||
|
<androidx.cardview.widget.CardView
|
||||||
|
android:id="@+id/card_viewData"
|
||||||
|
android:layout_width="0dp"
|
||||||
|
android:layout_height="200dp"
|
||||||
|
android:layout_marginStart="16dp"
|
||||||
|
android:layout_marginTop="16dp"
|
||||||
|
android:layout_marginEnd="16dp"
|
||||||
|
app:cardCornerRadius="12dp"
|
||||||
|
app:cardElevation="4dp"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintTop_toBottomOf="@id/back">
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/image_data"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
android:scaleType="centerCrop" />
|
||||||
|
|
||||||
|
</androidx.cardview.widget.CardView>
|
||||||
|
|
||||||
|
<!-- 下载应用按钮 -->
|
||||||
|
<LinearLayout
|
||||||
|
android:id="@+id/layoutDownloadApply"
|
||||||
|
android:layout_width="260dp"
|
||||||
|
android:layout_height="48dp"
|
||||||
|
android:layout_marginTop="22dp"
|
||||||
|
android:background="@drawable/dialog_setkeyboard"
|
||||||
|
android:gravity="center"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintTop_toBottomOf="@id/card_viewData">
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/im_download"
|
||||||
|
android:layout_width="24dp"
|
||||||
|
android:layout_height="24dp"
|
||||||
|
android:src="@mipmap/icon_download" />
|
||||||
|
|
||||||
|
<com.app.wave.keyboard.utils.TextVCustom
|
||||||
|
android:id="@+id/tv_download"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginStart="12dp"
|
||||||
|
android:text="@string/download_apply"
|
||||||
|
android:textColor="@color/white"
|
||||||
|
android:textSize="16sp"
|
||||||
|
app:apply_font="true" />
|
||||||
|
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||||
|
</androidx.cardview.widget.CardView>
|
||||||
|
|
||||||
|
<!-- ==================== 推荐部分 ==================== -->
|
||||||
|
<androidx.core.widget.NestedScrollView
|
||||||
|
android:id="@+id/nested_scroll_view"
|
||||||
|
android:layout_width="0dp"
|
||||||
|
android:layout_height="0dp"
|
||||||
|
android:fillViewport="true"
|
||||||
|
android:background="@color/theme_background"
|
||||||
|
app:layout_constraintBottom_toBottomOf="parent"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintTop_toBottomOf="@id/top_section_card">
|
||||||
|
|
||||||
|
<androidx.constraintlayout.widget.ConstraintLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content">
|
||||||
|
|
||||||
|
<!-- 推荐标题区域 -->
|
||||||
|
<LinearLayout
|
||||||
|
android:id="@+id/title_container"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:gravity="center"
|
||||||
|
android:orientation="vertical"
|
||||||
|
android:paddingTop="20dp"
|
||||||
|
android:paddingBottom="10dp"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintTop_toTopOf="parent">
|
||||||
|
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:gravity="center"
|
||||||
|
android:orientation="horizontal">
|
||||||
|
|
||||||
|
<!-- 左边下划线 -->
|
||||||
|
<View
|
||||||
|
android:layout_width="40dp"
|
||||||
|
android:layout_height="2dp"
|
||||||
|
android:layout_marginEnd="12dp"
|
||||||
|
android:background="@color/underline_color" />
|
||||||
|
|
||||||
|
<!-- 推荐标题 -->
|
||||||
|
<com.app.wave.keyboard.utils.TextVCustom
|
||||||
|
android:id="@+id/text_for_you"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="@string/recommend"
|
||||||
|
android:textColor="@color/text_color"
|
||||||
|
android:textSize="18sp"
|
||||||
|
android:textStyle="bold"
|
||||||
|
app:apply_font="true" />
|
||||||
|
|
||||||
|
<!-- 右边下划线 -->
|
||||||
|
<View
|
||||||
|
android:layout_width="40dp"
|
||||||
|
android:layout_height="2dp"
|
||||||
|
android:layout_marginStart="12dp"
|
||||||
|
android:background="@color/underline_color" />
|
||||||
|
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
|
<!-- 副标题 -->
|
||||||
|
<com.app.wave.keyboard.utils.TextVCustom
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginTop="4dp"
|
||||||
|
android:text="@string/more_suggestions"
|
||||||
|
android:textColor="@color/color_primary_dark"
|
||||||
|
android:textSize="12sp"
|
||||||
|
app:apply_font="true" />
|
||||||
|
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
|
<!-- 推荐键盘列表 -->
|
||||||
|
<androidx.recyclerview.widget.RecyclerView
|
||||||
|
android:id="@+id/recommended_recycler"
|
||||||
|
android:layout_width="0dp"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginStart="16dp"
|
||||||
|
android:layout_marginTop="6dp"
|
||||||
|
android:layout_marginEnd="16dp"
|
||||||
|
android:clipToPadding="false"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintTop_toBottomOf="@id/title_container" />
|
||||||
|
|
||||||
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||||
|
|
||||||
|
</androidx.core.widget.NestedScrollView>
|
||||||
|
|
||||||
|
<!-- ==================== 回到顶部按钮 ==================== -->
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/btn_scroll_to_top"
|
||||||
|
android:layout_width="36dp"
|
||||||
|
android:layout_height="36dp"
|
||||||
|
android:layout_marginEnd="20dp"
|
||||||
|
android:layout_marginBottom="30dp"
|
||||||
|
android:background="@drawable/icon_bg"
|
||||||
|
android:clickable="true"
|
||||||
|
android:focusable="true"
|
||||||
|
android:padding="8dp"
|
||||||
|
android:src="@mipmap/icon_top"
|
||||||
|
android:visibility="gone"
|
||||||
|
app:layout_constraintBottom_toBottomOf="parent"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent" />
|
||||||
|
|
||||||
|
<!-- ==================== 加载动画 ==================== -->
|
||||||
|
<FrameLayout
|
||||||
|
android:id="@+id/loading"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
android:background="@color/bg_loading"
|
||||||
|
android:clickable="true"
|
||||||
|
android:focusable="true"
|
||||||
|
android:visibility="gone"
|
||||||
|
app:layout_constraintBottom_toBottomOf="parent"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintTop_toTopOf="parent">
|
||||||
|
|
||||||
|
<ProgressBar
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_gravity="center"
|
||||||
|
android:indeterminateTint="@color/white" />
|
||||||
|
|
||||||
|
</FrameLayout>
|
||||||
|
|
||||||
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||||
87
app/src/main/res/layout/activity_main.xml
Normal file
@ -0,0 +1,87 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||||
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
|
android:id="@+id/main"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
android:background="@color/theme_background"
|
||||||
|
android:clipToPadding="false">
|
||||||
|
|
||||||
|
<androidx.viewpager2.widget.ViewPager2
|
||||||
|
android:id="@+id/viewpager"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
app:layout_constraintBottom_toBottomOf="parent"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintTop_toTopOf="parent" />
|
||||||
|
|
||||||
|
<androidx.cardview.widget.CardView
|
||||||
|
android:id="@+id/tab_container"
|
||||||
|
android:layout_width="0dp"
|
||||||
|
android:layout_height="68dp"
|
||||||
|
android:layout_marginBottom="30dp"
|
||||||
|
app:cardBackgroundColor="@color/tab_background"
|
||||||
|
app:cardCornerRadius="20dp"
|
||||||
|
app:cardElevation="12dp"
|
||||||
|
app:cardUseCompatPadding="false"
|
||||||
|
app:layout_constraintBottom_toBottomOf="parent"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
|
app:layout_constraintHorizontal_bias="0.5"
|
||||||
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintWidth_percent="0.7">
|
||||||
|
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
android:weightSum="2">
|
||||||
|
|
||||||
|
<FrameLayout
|
||||||
|
android:id="@+id/tab_home_container"
|
||||||
|
android:layout_width="0dp"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
android:layout_weight="1"
|
||||||
|
android:clickable="true"
|
||||||
|
android:focusable="true"
|
||||||
|
android:padding="2dp"
|
||||||
|
android:background="@drawable/tab_ripple_effect">
|
||||||
|
|
||||||
|
<include
|
||||||
|
android:id="@+id/tab_home"
|
||||||
|
layout="@layout/item_tabcontainer"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_gravity="center"
|
||||||
|
android:clickable="false"
|
||||||
|
android:focusable="false" />
|
||||||
|
|
||||||
|
</FrameLayout>
|
||||||
|
|
||||||
|
<FrameLayout
|
||||||
|
android:id="@+id/tab_favorite_container"
|
||||||
|
android:layout_width="0dp"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
android:layout_weight="1"
|
||||||
|
android:clickable="true"
|
||||||
|
android:focusable="true"
|
||||||
|
android:padding="2dp"
|
||||||
|
android:background="@drawable/tab_ripple_effect">
|
||||||
|
|
||||||
|
<include
|
||||||
|
android:id="@+id/tab_favorite"
|
||||||
|
layout="@layout/item_tabcontainer"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_gravity="center"
|
||||||
|
android:clickable="false"
|
||||||
|
android:focusable="false" />
|
||||||
|
|
||||||
|
</FrameLayout>
|
||||||
|
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
|
</androidx.cardview.widget.CardView>
|
||||||
|
|
||||||
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||||
64
app/src/main/res/layout/activity_more.xml
Normal file
@ -0,0 +1,64 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||||
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
android:id="@+id/main"
|
||||||
|
android:background="@color/theme_background"
|
||||||
|
tools:context="com.app.wave.keyboard.ui.MoreActivity">
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/back"
|
||||||
|
android:layout_width="44dp"
|
||||||
|
android:layout_height="44dp"
|
||||||
|
android:layout_marginTop="5dp"
|
||||||
|
android:paddingStart="5dp"
|
||||||
|
android:paddingTop="10dp"
|
||||||
|
android:paddingBottom="10dp"
|
||||||
|
android:src="@mipmap/icon_back"
|
||||||
|
android:tint="@color/text_color"
|
||||||
|
app:layout_constraintLeft_toLeftOf="parent"
|
||||||
|
app:layout_constraintTop_toTopOf="parent" />
|
||||||
|
|
||||||
|
<com.app.wave.keyboard.utils.TextVCustom
|
||||||
|
android:id="@+id/class_name"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="@string/app_name"
|
||||||
|
android:textColor="@color/text_color"
|
||||||
|
android:textStyle="bold"
|
||||||
|
android:textSize="18sp"
|
||||||
|
app:apply_font="true"
|
||||||
|
app:layout_constraintBottom_toBottomOf="@id/back"
|
||||||
|
app:layout_constraintLeft_toLeftOf="parent"
|
||||||
|
app:layout_constraintRight_toRightOf="parent"
|
||||||
|
app:layout_constraintTop_toTopOf="@id/back" />
|
||||||
|
|
||||||
|
<androidx.recyclerview.widget.RecyclerView
|
||||||
|
android:id="@+id/recycler"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="0dp"
|
||||||
|
android:paddingStart="10dp"
|
||||||
|
android:layout_marginTop="10dp"
|
||||||
|
android:paddingEnd="10dp"
|
||||||
|
app:layout_constraintBottom_toBottomOf="parent"
|
||||||
|
app:layout_constraintTop_toBottomOf="@id/back" />
|
||||||
|
|
||||||
|
<!-- 回到顶部按钮 -->
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/btn_scroll_to_top"
|
||||||
|
android:layout_width="36dp"
|
||||||
|
android:layout_height="36dp"
|
||||||
|
android:layout_marginEnd="20dp"
|
||||||
|
android:layout_marginBottom="30dp"
|
||||||
|
android:background="@drawable/icon_bg"
|
||||||
|
android:clickable="true"
|
||||||
|
android:focusable="true"
|
||||||
|
android:padding="8dp"
|
||||||
|
android:src="@mipmap/icon_top"
|
||||||
|
android:visibility="gone"
|
||||||
|
app:layout_constraintBottom_toBottomOf="parent"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent" />
|
||||||
|
|
||||||
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||||
171
app/src/main/res/layout/activity_settings.xml
Normal file
@ -0,0 +1,171 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:id="@+id/main_layout"
|
||||||
|
android:background="@color/theme_background"
|
||||||
|
android:minHeight="500dp">
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/close_button"
|
||||||
|
android:layout_width="40dp"
|
||||||
|
android:layout_height="40dp"
|
||||||
|
android:layout_marginTop="16dp"
|
||||||
|
android:layout_marginEnd="16dp"
|
||||||
|
android:src="@mipmap/settings_close"
|
||||||
|
android:padding="4dp"
|
||||||
|
android:background="?attr/selectableItemBackground"
|
||||||
|
android:clickable="true"
|
||||||
|
android:focusable="true"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
|
app:layout_constraintTop_toTopOf="parent" />
|
||||||
|
|
||||||
|
<androidx.constraintlayout.widget.Guideline
|
||||||
|
android:id="@+id/guideline_20_percent"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
app:layout_constraintGuide_percent="0.12" />
|
||||||
|
|
||||||
|
<!-- 顶部图标和名称区域 -->
|
||||||
|
<LinearLayout
|
||||||
|
android:id="@+id/iconContainer"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:orientation="vertical"
|
||||||
|
android:gravity="center"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintTop_toTopOf="@id/guideline_20_percent">
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/appIcon"
|
||||||
|
android:layout_width="@dimen/logo_size"
|
||||||
|
android:layout_height="@dimen/logo_size"
|
||||||
|
android:scaleType="fitCenter"
|
||||||
|
android:src="@mipmap/logo" />
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/appNameText"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginTop="12dp"
|
||||||
|
android:fontFamily="@font/alimama_shuheiti_"
|
||||||
|
android:letterSpacing="0.05"
|
||||||
|
android:text="@string/app_name"
|
||||||
|
android:textColor="@color/title_color"
|
||||||
|
android:textSize="@dimen/app_name_text_size" />
|
||||||
|
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
|
<androidx.cardview.widget.CardView
|
||||||
|
android:id="@+id/optionsContainer"
|
||||||
|
android:layout_width="0dp"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginStart="20dp"
|
||||||
|
android:layout_marginEnd="20dp"
|
||||||
|
android:layout_marginBottom="32dp"
|
||||||
|
app:cardBackgroundColor="@color/card_bg"
|
||||||
|
app:cardCornerRadius="@dimen/card_corner_radius"
|
||||||
|
app:cardElevation="@dimen/card_elevation"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintTop_toBottomOf="@id/iconContainer"
|
||||||
|
app:layout_constraintBottom_toBottomOf="parent">
|
||||||
|
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:orientation="vertical"
|
||||||
|
android:padding="@dimen/card_padding">
|
||||||
|
|
||||||
|
<!-- Rate Us 选项 -->
|
||||||
|
<RelativeLayout
|
||||||
|
android:id="@+id/rateUsLayout"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="@dimen/option_item_height"
|
||||||
|
android:background="?attr/selectableItemBackground"
|
||||||
|
android:clickable="true"
|
||||||
|
android:focusable="true"
|
||||||
|
android:paddingHorizontal="@dimen/option_padding_horizontal"
|
||||||
|
android:paddingVertical="@dimen/option_padding_vertical">
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/rateUsIcon"
|
||||||
|
android:layout_width="@dimen/option_icon_size"
|
||||||
|
android:layout_height="@dimen/option_icon_size"
|
||||||
|
android:layout_centerVertical="true"
|
||||||
|
android:src="@mipmap/settings_rate" />
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/rateUsText"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_centerVertical="true"
|
||||||
|
android:layout_marginStart="@dimen/option_text_margin_start"
|
||||||
|
android:layout_toEndOf="@id/rateUsIcon"
|
||||||
|
android:text="@string/rate_us"
|
||||||
|
android:textColor="@color/card_text"
|
||||||
|
android:textSize="@dimen/option_text_size"
|
||||||
|
android:textStyle="bold" />
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/rateUsArrow"
|
||||||
|
android:layout_width="@dimen/option_arrow_size"
|
||||||
|
android:layout_height="@dimen/option_arrow_size"
|
||||||
|
android:layout_alignParentEnd="true"
|
||||||
|
android:layout_centerVertical="true"
|
||||||
|
android:src="@mipmap/settings_right"
|
||||||
|
android:tint="@color/card_icon_tint" />
|
||||||
|
</RelativeLayout>
|
||||||
|
|
||||||
|
<!-- 分割线 -->
|
||||||
|
<View
|
||||||
|
android:id="@+id/divider1"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="@dimen/divider_height"
|
||||||
|
android:layout_marginTop="@dimen/divider_margin_vertical"
|
||||||
|
android:layout_marginBottom="@dimen/divider_margin_vertical"
|
||||||
|
android:background="@color/card_divider" />
|
||||||
|
|
||||||
|
<!-- Version 选项 -->
|
||||||
|
<RelativeLayout
|
||||||
|
android:id="@+id/versionLayout"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="@dimen/option_item_height"
|
||||||
|
android:paddingHorizontal="@dimen/option_padding_horizontal"
|
||||||
|
android:paddingVertical="@dimen/option_padding_vertical">
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/versionIcon"
|
||||||
|
android:layout_width="@dimen/option_icon_size"
|
||||||
|
android:layout_height="@dimen/option_icon_size"
|
||||||
|
android:layout_centerVertical="true"
|
||||||
|
android:padding="1dp"
|
||||||
|
android:src="@mipmap/settings_more" />
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/versionText"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_centerVertical="true"
|
||||||
|
android:layout_marginStart="@dimen/option_text_margin_start"
|
||||||
|
android:layout_toEndOf="@id/versionIcon"
|
||||||
|
android:text="@string/version"
|
||||||
|
android:textColor="@color/card_text"
|
||||||
|
android:textSize="@dimen/option_text_size"
|
||||||
|
android:textStyle="bold" />
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/versionValue"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_alignParentEnd="true"
|
||||||
|
android:layout_centerVertical="true"
|
||||||
|
android:textColor="@color/card_text"
|
||||||
|
android:textSize="@dimen/version_value_text_size" />
|
||||||
|
</RelativeLayout>
|
||||||
|
</LinearLayout>
|
||||||
|
</androidx.cardview.widget.CardView>
|
||||||
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||||
72
app/src/main/res/layout/activity_splash.xml
Normal file
@ -0,0 +1,72 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||||
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
android:id="@+id/main"
|
||||||
|
android:background="@color/launch_bg"
|
||||||
|
tools:context=".ui.SplashActivity">
|
||||||
|
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/image"
|
||||||
|
android:layout_width="170dp"
|
||||||
|
android:layout_height="170dp"
|
||||||
|
android:layout_marginTop="160dp"
|
||||||
|
android:src="@mipmap/logo"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintTop_toTopOf="parent" />
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/textview_appname"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginTop="28dp"
|
||||||
|
android:text="@string/app_name"
|
||||||
|
android:fontFamily="@font/alimama_shuheiti_"
|
||||||
|
android:textColor="@color/launch_text"
|
||||||
|
android:textSize="42sp"
|
||||||
|
android:textStyle="bold"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintTop_toBottomOf="@+id/image" />
|
||||||
|
|
||||||
|
<ProgressBar
|
||||||
|
android:id="@+id/progressbar"
|
||||||
|
style="?android:attr/progressBarStyleHorizontal"
|
||||||
|
android:layout_width="280dp"
|
||||||
|
android:layout_height="14dp"
|
||||||
|
android:layout_marginTop="40dp"
|
||||||
|
android:max="100"
|
||||||
|
android:progress="0"
|
||||||
|
android:progressDrawable="@drawable/progressbar_custom"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintTop_toBottomOf="@+id/textview_appname" />
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/textview_progress_percent"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginTop="16dp"
|
||||||
|
android:text="0%"
|
||||||
|
android:textColor="@color/launch_subtext"
|
||||||
|
android:textSize="16sp"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintTop_toBottomOf="@+id/progressbar" />
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/textview_version"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginBottom="40dp"
|
||||||
|
android:textColor="@color/launch_subtext"
|
||||||
|
android:textSize="14sp"
|
||||||
|
app:layout_constraintBottom_toBottomOf="parent"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
|
app:layout_constraintStart_toStartOf="parent" />
|
||||||
|
|
||||||
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||||
73
app/src/main/res/layout/adapter_category.xml
Normal file
@ -0,0 +1,73 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||||
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginTop="8dp"
|
||||||
|
android:layout_marginBottom="16dp"
|
||||||
|
app:cardBackgroundColor="@color/category_item_bg"
|
||||||
|
app:cardCornerRadius="12dp"
|
||||||
|
app:cardElevation="2dp">
|
||||||
|
|
||||||
|
|
||||||
|
<RelativeLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:padding="3dp">
|
||||||
|
|
||||||
|
<com.app.wave.keyboard.utils.TextVCustom
|
||||||
|
android:id="@+id/class_name"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="36dp"
|
||||||
|
android:layout_marginStart="8dp"
|
||||||
|
android:gravity="center_vertical"
|
||||||
|
android:text="@string/app_name"
|
||||||
|
android:textColor="@color/black"
|
||||||
|
android:textSize="17sp"
|
||||||
|
android:textStyle="bold"
|
||||||
|
app:apply_font="true" />
|
||||||
|
|
||||||
|
<com.app.wave.keyboard.utils.TextVCustom
|
||||||
|
android:id="@+id/tv_all"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
android:layout_alignTop="@id/class_name"
|
||||||
|
android:layout_alignBottom="@id/class_name"
|
||||||
|
android:layout_alignParentEnd="true"
|
||||||
|
android:layout_marginStart="16dp"
|
||||||
|
android:gravity="center_vertical"
|
||||||
|
android:paddingStart="15dp"
|
||||||
|
android:paddingEnd="15dp"
|
||||||
|
android:text="@string/more"
|
||||||
|
android:textColor="@color/card_text"
|
||||||
|
android:textSize="13sp"
|
||||||
|
app:apply_font="true" />
|
||||||
|
|
||||||
|
<androidx.recyclerview.widget.RecyclerView
|
||||||
|
android:id="@+id/child_recycler"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="140dp"
|
||||||
|
android:layout_below="@id/class_name"
|
||||||
|
android:clipToPadding="false"
|
||||||
|
android:paddingStart="12dp"
|
||||||
|
android:paddingTop="4dp"
|
||||||
|
android:paddingEnd="12dp"
|
||||||
|
android:paddingBottom="8dp" />
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/iv_scroll_hint"
|
||||||
|
android:layout_width="20dp"
|
||||||
|
android:layout_height="20dp"
|
||||||
|
android:layout_alignBottom="@id/child_recycler"
|
||||||
|
android:layout_alignParentEnd="true"
|
||||||
|
android:layout_marginEnd="8dp"
|
||||||
|
android:layout_marginBottom="3dp"
|
||||||
|
android:src="@mipmap/settings_right"
|
||||||
|
android:visibility="visible"
|
||||||
|
android:clickable="true"
|
||||||
|
android:focusable="true"/>
|
||||||
|
|
||||||
|
</RelativeLayout>
|
||||||
|
|
||||||
|
</androidx.cardview.widget.CardView>
|
||||||
25
app/src/main/res/layout/adapter_category_item.xml
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||||
|
android:id="@+id/fragme"
|
||||||
|
android:layout_width="150dp"
|
||||||
|
android:layout_height="90dp"
|
||||||
|
android:layout_marginEnd="8dp"
|
||||||
|
app:cardCornerRadius="8dp"
|
||||||
|
app:cardElevation="2dp">
|
||||||
|
|
||||||
|
<RelativeLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
android:padding="4dp">
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/image_view"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
android:adjustViewBounds="true"
|
||||||
|
android:scaleType="centerCrop" />
|
||||||
|
|
||||||
|
</RelativeLayout>
|
||||||
|
|
||||||
|
</androidx.cardview.widget.CardView>
|
||||||
34
app/src/main/res/layout/adapter_collection.xml
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginStart="10dp">
|
||||||
|
|
||||||
|
<androidx.cardview.widget.CardView
|
||||||
|
android:id="@+id/card_view"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="120dp"
|
||||||
|
android:layout_gravity="center_horizontal"
|
||||||
|
android:layout_marginBottom="12dp"
|
||||||
|
app:cardCornerRadius="12dp"
|
||||||
|
app:cardElevation="0dp">
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/im"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
android:scaleType="fitXY" />
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/im_favorite"
|
||||||
|
android:layout_width="24dp"
|
||||||
|
android:layout_height="24dp"
|
||||||
|
android:layout_gravity="end"
|
||||||
|
android:layout_marginTop="6dp"
|
||||||
|
android:layout_marginEnd="6dp"
|
||||||
|
android:src="@drawable/selector_collection" />
|
||||||
|
|
||||||
|
</androidx.cardview.widget.CardView>
|
||||||
|
|
||||||
|
</FrameLayout>
|
||||||
21
app/src/main/res/layout/adapter_recommend.xml
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content">
|
||||||
|
|
||||||
|
<androidx.cardview.widget.CardView
|
||||||
|
android:id="@+id/card_view"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="120dp"
|
||||||
|
android:layout_marginEnd="5dp"
|
||||||
|
android:layout_marginBottom="8dp"
|
||||||
|
app:cardCornerRadius="12dp">
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/imPreview"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
android:scaleType="fitXY" />
|
||||||
|
</androidx.cardview.widget.CardView>
|
||||||
|
</FrameLayout>
|
||||||
99
app/src/main/res/layout/dialog_keyboard.xml
Normal file
@ -0,0 +1,99 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||||
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content">
|
||||||
|
|
||||||
|
<androidx.constraintlayout.widget.ConstraintLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:background="@drawable/dialog_bg"
|
||||||
|
android:paddingBottom="30dp">
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/im_close"
|
||||||
|
android:layout_width="45dp"
|
||||||
|
android:layout_height="45dp"
|
||||||
|
android:layout_marginTop="5dp"
|
||||||
|
android:layout_marginEnd="15dp"
|
||||||
|
android:padding="5dp"
|
||||||
|
android:src="@mipmap/settings_close"
|
||||||
|
app:layout_constraintRight_toRightOf="parent"
|
||||||
|
app:layout_constraintTop_toTopOf="parent" />
|
||||||
|
|
||||||
|
<com.app.wave.keyboard.utils.TextVCustom
|
||||||
|
android:id="@+id/text_open"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginStart="50dp"
|
||||||
|
android:layout_marginEnd="50dp"
|
||||||
|
android:gravity="center"
|
||||||
|
android:text="@string/open_str"
|
||||||
|
android:textColor="@color/black"
|
||||||
|
android:textSize="16sp"
|
||||||
|
app:apply_font="true"
|
||||||
|
app:layout_constraintTop_toBottomOf="@id/im_close" />
|
||||||
|
|
||||||
|
<LinearLayout
|
||||||
|
android:id="@+id/linear_step_one"
|
||||||
|
android:layout_width="280dp"
|
||||||
|
android:layout_height="52dp"
|
||||||
|
android:layout_marginTop="22dp"
|
||||||
|
android:background="@drawable/selector_setkeyboard"
|
||||||
|
android:gravity="center"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
app:layout_constraintLeft_toLeftOf="parent"
|
||||||
|
app:layout_constraintRight_toRightOf="parent"
|
||||||
|
app:layout_constraintTop_toBottomOf="@id/text_open">
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/ok_one"
|
||||||
|
android:layout_width="24dp"
|
||||||
|
android:layout_height="24dp"
|
||||||
|
android:layout_marginEnd="8dp"
|
||||||
|
android:src="@mipmap/icon_already"
|
||||||
|
android:visibility="gone" />
|
||||||
|
|
||||||
|
<com.app.wave.keyboard.utils.TextVCustom
|
||||||
|
android:id="@+id/text_step_one"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="@string/step_1"
|
||||||
|
android:textColor="@color/white"
|
||||||
|
android:textSize="15sp"
|
||||||
|
app:apply_font="true" />
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
|
|
||||||
|
<LinearLayout
|
||||||
|
android:id="@+id/linear_step_two"
|
||||||
|
android:layout_width="280dp"
|
||||||
|
android:layout_height="52dp"
|
||||||
|
android:layout_marginTop="20dp"
|
||||||
|
android:background="@drawable/selector_setkeyboard"
|
||||||
|
android:gravity="center"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
app:layout_constraintLeft_toLeftOf="parent"
|
||||||
|
app:layout_constraintRight_toRightOf="parent"
|
||||||
|
app:layout_constraintTop_toBottomOf="@id/linear_step_one">
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/ok_two"
|
||||||
|
android:layout_width="24dp"
|
||||||
|
android:layout_height="24dp"
|
||||||
|
android:layout_marginEnd="8dp"
|
||||||
|
android:src="@mipmap/icon_already"
|
||||||
|
android:visibility="gone" />
|
||||||
|
|
||||||
|
<com.app.wave.keyboard.utils.TextVCustom
|
||||||
|
android:id="@+id/text_step_two"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="@string/step_2"
|
||||||
|
android:textColor="@color/white"
|
||||||
|
android:textSize="15sp"
|
||||||
|
app:apply_font="true" />
|
||||||
|
</LinearLayout>
|
||||||
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||||
|
</FrameLayout>
|
||||||
117
app/src/main/res/layout/dialog_rateus.xml
Normal file
@ -0,0 +1,117 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:background="@drawable/dialog_bg"
|
||||||
|
android:orientation="vertical"
|
||||||
|
android:padding="24dp"
|
||||||
|
android:clipChildren="false"
|
||||||
|
android:clipToPadding="false">
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginBottom="16dp"
|
||||||
|
android:gravity="center"
|
||||||
|
android:text="Rate us"
|
||||||
|
android:textColor="@color/dialog_title_color"
|
||||||
|
android:textSize="20sp"
|
||||||
|
android:textStyle="bold" />
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/dialog_message"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginBottom="18dp"
|
||||||
|
android:gravity="center"
|
||||||
|
android:lineSpacingExtra="4dp"
|
||||||
|
android:text="We hope this app is useful for you, if it does, would you please give us a 5 star and a nice review on Google Play, it really helps!"
|
||||||
|
android:textColor="@color/dialog_text_color"
|
||||||
|
android:textSize="12sp" />
|
||||||
|
|
||||||
|
<!-- 星星容器 -->
|
||||||
|
<LinearLayout
|
||||||
|
android:id="@+id/star_rating_layout"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginBottom="18dp"
|
||||||
|
android:gravity="center"
|
||||||
|
android:orientation="horizontal">
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/star1"
|
||||||
|
android:layout_width="32dp"
|
||||||
|
android:layout_height="32dp"
|
||||||
|
android:layout_margin="4dp"
|
||||||
|
android:src="@mipmap/icon_starblack" />
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/star2"
|
||||||
|
android:layout_width="32dp"
|
||||||
|
android:layout_height="32dp"
|
||||||
|
android:layout_margin="4dp"
|
||||||
|
android:src="@mipmap/icon_starblack" />
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/star3"
|
||||||
|
android:layout_width="32dp"
|
||||||
|
android:layout_height="32dp"
|
||||||
|
android:layout_margin="4dp"
|
||||||
|
android:src="@mipmap/icon_starblack" />
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/star4"
|
||||||
|
android:layout_width="32dp"
|
||||||
|
android:layout_height="32dp"
|
||||||
|
android:layout_margin="4dp"
|
||||||
|
android:src="@mipmap/icon_starblack" />
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/star5"
|
||||||
|
android:layout_width="32dp"
|
||||||
|
android:layout_height="32dp"
|
||||||
|
android:layout_margin="4dp"
|
||||||
|
android:src="@mipmap/icon_starblack" />
|
||||||
|
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
|
<!-- 按钮布局 -->
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:gravity="center"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
android:clipChildren="false">
|
||||||
|
|
||||||
|
<com.google.android.material.button.MaterialButton
|
||||||
|
android:id="@+id/btn_cancel"
|
||||||
|
android:layout_width="0dp"
|
||||||
|
android:layout_height="40dp"
|
||||||
|
android:layout_marginStart="8dp"
|
||||||
|
android:layout_marginEnd="8dp"
|
||||||
|
android:layout_weight="1"
|
||||||
|
android:background="@drawable/dialog_cancel"
|
||||||
|
android:text="cancel"
|
||||||
|
android:textAllCaps="true"
|
||||||
|
android:textColor="@color/dialog_button_text"
|
||||||
|
android:gravity="center"
|
||||||
|
app:backgroundTint="@null" />
|
||||||
|
|
||||||
|
<com.google.android.material.button.MaterialButton
|
||||||
|
android:id="@+id/btn_rate"
|
||||||
|
android:layout_width="0dp"
|
||||||
|
android:layout_height="40dp"
|
||||||
|
android:layout_marginStart="8dp"
|
||||||
|
android:layout_marginEnd="8dp"
|
||||||
|
android:layout_weight="1"
|
||||||
|
android:background="@drawable/dialog_rateit_outline"
|
||||||
|
android:enabled="false"
|
||||||
|
android:text="RATE IT"
|
||||||
|
android:textAllCaps="true"
|
||||||
|
android:textColor="@color/white"
|
||||||
|
android:gravity="center"
|
||||||
|
app:backgroundTint="@null" />
|
||||||
|
|
||||||
|
</LinearLayout>
|
||||||
|
</LinearLayout>
|
||||||
48
app/src/main/res/layout/empty_collection.xml
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent">
|
||||||
|
|
||||||
|
<LinearLayout
|
||||||
|
android:id="@+id/content_container"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:gravity="center_horizontal"
|
||||||
|
android:orientation="vertical"
|
||||||
|
app:layout_constraintBottom_toBottomOf="parent"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintTop_toTopOf="parent"
|
||||||
|
app:layout_constraintVertical_bias="0.4">
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/empty_icon"
|
||||||
|
android:layout_width="100dp"
|
||||||
|
android:layout_height="100dp"
|
||||||
|
android:layout_marginBottom="24dp"
|
||||||
|
android:src="@mipmap/mainac_collection"
|
||||||
|
android:tint="@color/card_icon_tint" />
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/empty_title"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:letterSpacing="0.02"
|
||||||
|
android:text="@string/empty_collection_title"
|
||||||
|
android:textColor="@color/title_color"
|
||||||
|
android:textSize="20sp"
|
||||||
|
android:textStyle="bold" />
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/empty_subtitle"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginTop="12dp"
|
||||||
|
android:gravity="center"
|
||||||
|
android:text="@string/empty_collection_content"
|
||||||
|
android:textColor="@color/card_text"
|
||||||
|
android:textSize="16sp" />
|
||||||
|
|
||||||
|
</LinearLayout>
|
||||||
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||||
94
app/src/main/res/layout/fragment_collection.xml
Normal file
@ -0,0 +1,94 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||||
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
android:background="@color/theme_background"
|
||||||
|
android:padding="8dp">
|
||||||
|
|
||||||
|
<!-- 标题 -->
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/collection_title"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginTop="12dp"
|
||||||
|
android:letterSpacing="0.03"
|
||||||
|
android:text="Collection"
|
||||||
|
android:textStyle="bold"
|
||||||
|
android:textColor="@color/black"
|
||||||
|
android:textSize="20sp"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintTop_toTopOf="parent" />
|
||||||
|
|
||||||
|
<!-- 收藏数量显示 -->
|
||||||
|
<LinearLayout
|
||||||
|
android:id="@+id/text_favorite_count_container"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:gravity="center"
|
||||||
|
android:layout_marginTop="12dp"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
android:padding="8dp"
|
||||||
|
android:visibility="gone"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintTop_toBottomOf="@id/collection_title">
|
||||||
|
|
||||||
|
<View
|
||||||
|
android:layout_width="0dp"
|
||||||
|
android:layout_height="1.2dp"
|
||||||
|
android:layout_marginStart="30dp"
|
||||||
|
android:layout_marginEnd="16dp"
|
||||||
|
android:layout_weight="1"
|
||||||
|
android:background="@color/underline_color" />
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/text_favorite_count"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:textColor="@color/underline_color"
|
||||||
|
android:textSize="14sp" />
|
||||||
|
|
||||||
|
<View
|
||||||
|
android:layout_width="0dp"
|
||||||
|
android:layout_height="1.2dp"
|
||||||
|
android:layout_marginStart="16dp"
|
||||||
|
android:layout_marginEnd="30dp"
|
||||||
|
android:layout_weight="1"
|
||||||
|
android:background="@color/underline_color" />
|
||||||
|
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
|
<!-- 内容区域 -->
|
||||||
|
<FrameLayout
|
||||||
|
android:id="@+id/content_container"
|
||||||
|
android:layout_width="0dp"
|
||||||
|
android:layout_height="0dp"
|
||||||
|
android:layout_marginTop="10dp"
|
||||||
|
app:layout_constraintBottom_toBottomOf="parent"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintTop_toBottomOf="@+id/text_favorite_count_container">
|
||||||
|
|
||||||
|
<!-- 收藏列表 -->
|
||||||
|
<androidx.recyclerview.widget.RecyclerView
|
||||||
|
android:id="@+id/like_recycler"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
android:clipToPadding="false"
|
||||||
|
android:padding="4dp"
|
||||||
|
android:visibility="gone" />
|
||||||
|
|
||||||
|
<!-- 空状态 -->
|
||||||
|
<include
|
||||||
|
android:id="@+id/empty_container"
|
||||||
|
layout="@layout/empty_collection"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
android:visibility="gone" />
|
||||||
|
|
||||||
|
</FrameLayout>
|
||||||
|
|
||||||
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||||
86
app/src/main/res/layout/fragment_homepage.xml
Normal file
@ -0,0 +1,86 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||||
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
tools:context=".ui.HomepageFragment">
|
||||||
|
|
||||||
|
<!-- 主内容区域 -->
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
android:orientation="vertical">
|
||||||
|
|
||||||
|
<!-- 顶部标题栏 -->
|
||||||
|
<RelativeLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="56dp"
|
||||||
|
android:paddingStart="16dp"
|
||||||
|
android:paddingEnd="14dp">
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/app_icon"
|
||||||
|
android:layout_width="40dp"
|
||||||
|
android:layout_height="40dp"
|
||||||
|
android:layout_alignParentStart="true"
|
||||||
|
android:layout_centerVertical="true"
|
||||||
|
android:scaleType="fitCenter"
|
||||||
|
android:src="@mipmap/logo" />
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/app_name"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_centerInParent="true"
|
||||||
|
android:fontFamily="@font/alimama_shuheiti_"
|
||||||
|
android:letterSpacing="0.03"
|
||||||
|
android:text="@string/app_name"
|
||||||
|
android:textColor="@color/title_color"
|
||||||
|
android:textSize="20sp"
|
||||||
|
android:textStyle="bold" />
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/collection_icon"
|
||||||
|
android:layout_width="30dp"
|
||||||
|
android:layout_height="30dp"
|
||||||
|
android:layout_alignParentEnd="true"
|
||||||
|
android:layout_centerVertical="true"
|
||||||
|
android:src="@mipmap/ic_settings" />
|
||||||
|
|
||||||
|
</RelativeLayout>
|
||||||
|
|
||||||
|
<!-- 分割线 -->
|
||||||
|
<View
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="1dp"
|
||||||
|
android:background="@color/card_divider" />
|
||||||
|
|
||||||
|
<!-- 内容区域 -->
|
||||||
|
<androidx.recyclerview.widget.RecyclerView
|
||||||
|
android:id="@+id/recyclerview"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
android:clipToPadding="true"
|
||||||
|
android:paddingTop="12dp"
|
||||||
|
android:paddingStart="12dp"
|
||||||
|
android:paddingEnd="12dp"/>
|
||||||
|
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
|
<!-- 回到顶部按钮 -->
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/btn_scroll_to_top"
|
||||||
|
android:layout_width="36dp"
|
||||||
|
android:layout_height="36dp"
|
||||||
|
android:layout_gravity="bottom|end"
|
||||||
|
android:layout_marginEnd="20dp"
|
||||||
|
android:layout_marginBottom="80dp"
|
||||||
|
android:background="@drawable/icon_bg"
|
||||||
|
android:clickable="true"
|
||||||
|
android:focusable="true"
|
||||||
|
android:padding="8dp"
|
||||||
|
android:src="@mipmap/icon_top"
|
||||||
|
android:visibility="gone" />
|
||||||
|
|
||||||
|
</FrameLayout>
|
||||||
38
app/src/main/res/layout/item_keyboard_preview.xml
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:id="@+id/rl_layout"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent">
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/gif_bg"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="0dp"
|
||||||
|
android:layout_alignTop="@id/custom_input_view"
|
||||||
|
android:layout_alignBottom="@id/custom_input_view" />
|
||||||
|
|
||||||
|
<VideoView
|
||||||
|
android:id="@+id/video_view"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="0dp"
|
||||||
|
android:layout_alignTop="@id/custom_input_view"
|
||||||
|
android:layout_alignBottom="@id/custom_input_view" />
|
||||||
|
|
||||||
|
<com.app.wave.keyboard.kbhelper.KBView
|
||||||
|
android:id="@+id/custom_input_view"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:animateLayoutChanges="true"
|
||||||
|
android:focusable="true"
|
||||||
|
android:focusableInTouchMode="true"
|
||||||
|
android:keyBackground="@drawable/selector_keyboard_preview"
|
||||||
|
android:keyTextColor="@color/white"
|
||||||
|
android:keyTextSize="0sp"
|
||||||
|
android:labelTextSize="12sp"
|
||||||
|
android:paddingStart="5dp"
|
||||||
|
android:paddingTop="5dp"
|
||||||
|
android:paddingEnd="5dp"
|
||||||
|
android:paddingBottom="5dp" />
|
||||||
|
|
||||||
|
|
||||||
|
</RelativeLayout>
|
||||||
16
app/src/main/res/layout/item_tabcontainer.xml
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:orientation="vertical"
|
||||||
|
android:gravity="center">
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/im_icon"
|
||||||
|
android:layout_width="36dp"
|
||||||
|
android:layout_height="36dp"
|
||||||
|
android:scaleType="centerInside"
|
||||||
|
android:elevation="4dp" />
|
||||||
|
|
||||||
|
</LinearLayout>
|
||||||
BIN
app/src/main/res/mipmap-xxxhdpi/ic_settings.png
Normal file
|
After Width: | Height: | Size: 8.7 KiB |
BIN
app/src/main/res/mipmap-xxxhdpi/icon_already.png
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
app/src/main/res/mipmap-xxxhdpi/icon_back.png
Normal file
|
After Width: | Height: | Size: 341 B |
BIN
app/src/main/res/mipmap-xxxhdpi/icon_download.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
app/src/main/res/mipmap-xxxhdpi/icon_star.png
Normal file
|
After Width: | Height: | Size: 3.7 KiB |
BIN
app/src/main/res/mipmap-xxxhdpi/icon_starblack.png
Normal file
|
After Width: | Height: | Size: 5.8 KiB |
BIN
app/src/main/res/mipmap-xxxhdpi/icon_top.png
Normal file
|
After Width: | Height: | Size: 3.5 KiB |
BIN
app/src/main/res/mipmap-xxxhdpi/logo.png
Normal file
|
After Width: | Height: | Size: 345 KiB |
BIN
app/src/main/res/mipmap-xxxhdpi/mainac_collection.png
Normal file
|
After Width: | Height: | Size: 3.4 KiB |
BIN
app/src/main/res/mipmap-xxxhdpi/mainac_collection_outline.png
Normal file
|
After Width: | Height: | Size: 3.4 KiB |
BIN
app/src/main/res/mipmap-xxxhdpi/mainac_home.png
Normal file
|
After Width: | Height: | Size: 4.5 KiB |
BIN
app/src/main/res/mipmap-xxxhdpi/mainac_home_outline.png
Normal file
|
After Width: | Height: | Size: 3.1 KiB |
BIN
app/src/main/res/mipmap-xxxhdpi/settings_close.png
Normal file
|
After Width: | Height: | Size: 2.5 KiB |
BIN
app/src/main/res/mipmap-xxxhdpi/settings_more.png
Normal file
|
After Width: | Height: | Size: 6.6 KiB |
BIN
app/src/main/res/mipmap-xxxhdpi/settings_rate.png
Normal file
|
After Width: | Height: | Size: 6.0 KiB |
BIN
app/src/main/res/mipmap-xxxhdpi/settings_right.png
Normal file
|
After Width: | Height: | Size: 2.5 KiB |