Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
W
Widget
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Android Widget
Widget
Commits
6e4ceca7
Commit
6e4ceca7
authored
Jan 06, 2022
by
gaoyingxiang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
自定义数字键盘
parent
767e1888
Changes
8
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
445 additions
and
0 deletions
+445
-0
CommonKeyBoardKeyBoard.kt
.../java/com/qmai/android/keyboard/CommonKeyBoardKeyBoard.kt
+282
-0
icon_key_board_delete.png
...iew/src/main/res/drawable-xhdpi/icon_key_board_delete.png
+0
-0
savestock_blue.xml
KeyBoardView/src/main/res/drawable/savestock_blue.xml
+4
-0
attrs.xml
KeyBoardView/src/main/res/values/attrs.xml
+12
-0
inputphonekeyboard.xml
KeyBoardView/src/main/res/xml/inputphonekeyboard.xml
+80
-0
MainActivityPtinter.kt
...main/java/com/qimai/android/widget/MainActivityPtinter.kt
+1
-0
activity_main.xml
app/src/main/res/layout/activity_main.xml
+41
-0
SocketRecordBean.kt
...c/main/java/com/zhimai/websocket/bean/SocketRecordBean.kt
+25
-0
No files found.
KeyBoardView/src/main/java/com/qmai/android/keyboard/CommonKeyBoardKeyBoard.kt
0 → 100644
View file @
6e4ceca7
This diff is collapsed.
Click to expand it.
KeyBoardView/src/main/res/drawable-xhdpi/icon_key_board_delete.png
0 → 100644
View file @
6e4ceca7
1.65 KB
KeyBoardView/src/main/res/drawable/savestock_blue.xml
0 → 100644
View file @
6e4ceca7
<?xml version="1.0" encoding="utf-8"?>
<shape
xmlns:android=
"http://schemas.android.com/apk/res/android"
>
<solid
android:color=
"#3478F3"
/>
</shape>
\ No newline at end of file
KeyBoardView/src/main/res/values/attrs.xml
View file @
6e4ceca7
...
@@ -100,4 +100,16 @@
...
@@ -100,4 +100,16 @@
<attr
name=
"keyboardMode"
/>
<attr
name=
"keyboardMode"
/>
</declare-styleable>
</declare-styleable>
<!--按钮控件(CommonKeyBoardKeyBoardStyleable)的设置-->
<declare-styleable
name=
"CommonKeyBoardKeyBoardStyleable"
>
<attr
name=
"sureText"
format=
"string"
/>
<attr
name=
"sureTextColor"
format=
"reference|color"
/>
<attr
name=
"sureTextSize"
format=
"dimension"
/>
<attr
name=
"clearTextColor"
format=
"reference|color"
/>
<attr
name=
"clearText"
format=
"string"
/>
<attr
name=
"clearTextSize"
format=
"dimension"
/>
<attr
name=
"pointColor"
format=
"reference|color"
/>
<attr
name=
"pointSize"
format=
"dimension"
/>
</declare-styleable>
</resources>
</resources>
\ No newline at end of file
KeyBoardView/src/main/res/xml/inputphonekeyboard.xml
0 → 100644
View file @
6e4ceca7
<?xml version="1.0" encoding="utf-8"?>
<Keyboard
xmlns:android=
"http://schemas.android.com/apk/res/android"
android:keyHeight=
"41dp"
android:horizontalGap=
"1dp"
android:verticalGap=
"1dp"
android:keyWidth=
"25%p"
>
<Row>
<Key
android:codes=
"1"
android:keyEdgeFlags=
"left"
android:keyLabel=
"1"
/>
<Key
android:codes=
"2"
android:keyLabel=
"2"
/>
<Key
android:codes=
"3"
android:keyEdgeFlags=
"right"
android:keyLabel=
"3"
/>
<Key
android:codes=
"11"
android:keyEdgeFlags=
"right"
android:isRepeatable=
"true"
android:keyLabel=
""
/>
</Row>
<Row>
<Key
android:codes=
"4"
android:keyEdgeFlags=
"left"
android:keyLabel=
"4"
/>
<Key
android:codes=
"5"
android:keyLabel=
"5"
/>
<Key
android:codes=
"6"
android:keyLabel=
"6"
/>
<Key
android:codes=
"-11"
android:keyEdgeFlags=
"right"
android:keyHeight=
"181dp"
android:keyLabel=
"结账"
/>
</Row>
<Row>
<Key
android:codes=
"7"
android:keyEdgeFlags=
"left"
android:keyLabel=
"7"
/>
<Key
android:codes=
"8"
android:keyLabel=
"8"
/>
<Key
android:codes=
"9"
android:keyLabel=
"9"
/>
<Key
android:codes=
"-"
android:keyEdgeFlags=
"right"
android:keyHeight=
"0dp"
/>
</Row>
<Row>
<Key
android:codes=
"20"
android:keyEdgeFlags=
"left"
android:keyLabel=
""
/>
<Key
android:codes=
"0"
android:keyLabel=
"0"
/>
<Key
android:codes=
"10"
android:isRepeatable=
"true"
android:keyIcon =
"@drawable/icon_key_board_delete"
/>
<Key
android:codes=
"-"
android:keyEdgeFlags=
"right"
android:keyHeight=
"0dp"
/>
</Row>
</Keyboard>
app/src/main/java/com/qimai/android/widget/MainActivityPtinter.kt
View file @
6e4ceca7
...
@@ -10,6 +10,7 @@ import android.os.Environment
...
@@ -10,6 +10,7 @@ import android.os.Environment
import
android.util.Log
import
android.util.Log
import
androidx.annotation.RequiresApi
import
androidx.annotation.RequiresApi
import
androidx.appcompat.app.AppCompatActivity
import
androidx.appcompat.app.AppCompatActivity
import
com.bumptech.glide.Glide
import
com.eclipsesource.v8.JavaVoidCallback
import
com.eclipsesource.v8.JavaVoidCallback
import
com.eclipsesource.v8.V8
import
com.eclipsesource.v8.V8
import
com.eclipsesource.v8.V8Array
import
com.eclipsesource.v8.V8Array
...
...
app/src/main/res/layout/activity_main.xml
View file @
6e4ceca7
...
@@ -112,6 +112,47 @@
...
@@ -112,6 +112,47 @@
android:keyBackground=
"@drawable/stockbtn_keyboard_key"
android:keyBackground=
"@drawable/stockbtn_keyboard_key"
android:layout_width=
"wrap_content"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
/>
android:layout_height=
"wrap_content"
/>
<com.qmai.android.keyboard.CommonKeyBoardKeyBoard
android:id=
"@+id/keyPhone"
android:layout_marginLeft=
"140dp"
android:layout_marginRight=
"140dp"
android:layout_marginTop=
"20dp"
android:background=
"@drawable/shape_key"
android:paddingRight=
"1dp"
android:keyTextColor=
"#333333"
android:paddingTop=
"1dp"
android:paddingBottom=
"1dp"
android:paddingLeft=
"1dp"
android:keyTextSize=
"16sp"
android:verticalGap=
"10dp"
android:shadowColor=
"#ffffff"
app:pointSize =
"120dp"
android:keyBackground=
"@drawable/stockbtn_keyboard_key"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
/>
<com.qmai.android.keyboard.MoneyNumberKeyBoardKeyBoard
android:id=
"@+id/moneyKeyboard"
app:layout_constraintTop_toBottomOf=
"@+id/quickInputRecycler"
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
android:layout_marginLeft=
"100dp"
android:layout_marginRight=
"100dp"
android:background=
"@drawable/shape_key"
android:keyBackground=
"@drawable/stockbtn_keyboard_key"
android:keyTextColor=
"@color/black"
android:keyTextSize=
"18sp"
android:paddingStart=
"1dp"
android:layout_alignParentBottom=
"true"
android:paddingTop=
"1dp"
android:paddingEnd=
"4dp"
android:paddingBottom=
"1dp"
android:shadowColor=
"#ffffff"
android:layout_marginBottom=
"16dp"
android:layout_gravity=
"bottom|center_horizontal"
app:layout_constraintLeft_toLeftOf=
"parent"
app:layout_constraintRight_toRightOf=
"parent"
/>
</LinearLayout>
</LinearLayout>
...
...
websocket/src/main/java/com/zhimai/websocket/bean/SocketRecordBean.kt
0 → 100644
View file @
6e4ceca7
package
com.zhimai.websocket.bean
import
org.litepal.crud.LitePalSupport
/**
* @author: 高英祥
* @github:
* @time: 2021/9/29 16:27
* @desc:
* @doc:
*/
class
SocketRecordBean
:
LitePalSupport
()
{
var
time
:
String
?
=
null
//当时的动作
var
action
:
String
?
=
null
//错误信息
var
error
:
String
?
=
null
//说明
var
desc
:
String
?
=
null
//预留扩展字段1
var
otherOne
:
String
?
=
null
//预留扩展字段2
var
otherTwo
:
String
?
=
null
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment