在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称(OpenSource Name):gregcockroft/AndroidMath开源软件地址(OpenSource Url):https://github.com/gregcockroft/AndroidMath开源编程语言(OpenSource Language):Kotlin 88.0%开源软件介绍(OpenSource Introduction):AndroidMath
Installation from the command line
Installation for Android StudioClone this project, run CDep. CDep pulls in the freetype dependency.
Open the project in Android Studio Using library in your app
This is using jitpack.io Add below lines to root's build.gradle allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
} Add below lines to apps's build.gradle dependencies {
implementation 'com.github.gregcockroft:AndroidMath:ALPHA'
}
<ConstraintLayout ...>
<TextView
android:id="@+id/description"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello Math!"
app:layout_constraintBottom_toTopOf="@+id/mathview"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<com.agog.mathdisplay.MTMathView
android:id="@+id/mathview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="56dp"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toBottomOf="@id/description" />
</ConstraintLayout> override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(activity_main)
mathview.latex = "x = \\frac{-b \\pm \\sqrt{b^2-4ac}}{2a}"
}
APILook at MTMathView This is the central access class. Credits:
Related ProjectsFor people looking for things beyond just rendering math, there are two related projects:
LicenseAndroidMath is available under the MIT license. See the LICENSE file for more info. FontsThis distribution contains the following fonts. These fonts are licensed as follows:
|
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论