another test

master
C10udburst 2022-08-19 12:27:05 +02:00
parent 64559801b7
commit bd6b472e9d
4 changed files with 39 additions and 6 deletions

View File

@ -4,7 +4,7 @@ dependencies {
implementation("androidx.recyclerview:recyclerview:1.2.1") implementation("androidx.recyclerview:recyclerview:1.2.1")
} }
// use an integer for version numbers // use an integer for version numbers
version = 4 version = 5
cloudstream { cloudstream {

View File

@ -1,15 +1,20 @@
package com.example package com.example
import android.content.res.ColorStateList
import android.graphics.drawable.Drawable import android.graphics.drawable.Drawable
import android.os.Build
import android.os.Bundle import android.os.Bundle
import androidx.fragment.app.Fragment import androidx.fragment.app.Fragment
import android.view.LayoutInflater import android.view.LayoutInflater
import android.view.View import android.view.View
import android.view.ViewGroup import android.view.ViewGroup
import com.lagradost.cloudstream3.R
import android.widget.ImageView import android.widget.ImageView
import android.widget.TextView import android.widget.TextView
import androidx.annotation.RequiresApi
import androidx.core.content.res.ResourcesCompat import androidx.core.content.res.ResourcesCompat
import com.google.android.material.bottomsheet.BottomSheetDialogFragment import com.google.android.material.bottomsheet.BottomSheetDialogFragment
import com.lagradost.cloudstream3.utils.UIHelper.colorFromAttribute
// TODO: Rename parameter arguments, choose names that match // TODO: Rename parameter arguments, choose names that match
// the fragment initialization parameters, e.g. ARG_ITEM_NUMBER // the fragment initialization parameters, e.g. ARG_ITEM_NUMBER
@ -59,16 +64,25 @@ class BlankFragment(val plugin: TestPlugin) : BottomSheetDialogFragment() {
return inflater.inflate(layout, container, false) return inflater.inflate(layout, container, false)
} }
@RequiresApi(Build.VERSION_CODES.M)
override fun onViewCreated(view: View, savedInstanceState: Bundle?) { override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
val imageView = view.findView<ImageView>("imageView") val imageView = view.findView<ImageView>("imageView")
val imageView2 = view.findView<ImageView>("imageView2")
val textView = view.findView<TextView>("textView") val textView = view.findView<TextView>("textView")
val textView2 = view.findView<TextView>("textView2")
textView.text = getString("hello_fragment") textView.text = getString("hello_fragment")
textView.setTextAppearance(view.context, R.style.ResultInfoText)
textView2.text = view.context.resources.getText(R.string.nginx_info_summary)
imageView.setImageDrawable( imageView.setImageDrawable(
getDrawable("ic_android_24dp") getDrawable("ic_android_24dp")
) )
imageView.imageTintList = ColorStateList.valueOf(view.context.getColor(R.color.white))
imageView2.setImageDrawable(
getDrawable("ic_android_24dp")
)
imageView2.imageTintList = ColorStateList.valueOf(view.context.colorFromAttribute(R.attr.white))
} }
} }

View File

@ -1,4 +1,4 @@
<vector android:height="24dp" android:tint="#FF0000" <vector android:height="24dp" android:tint="#000000"
android:viewportHeight="24" android:viewportWidth="24" android:viewportHeight="24" android:viewportWidth="24"
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android"> android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:pathData="M17.6,11.48 L19.44,8.3a0.63,0.63 0,0 0,-1.09 -0.63l-1.88,3.24a11.43,11.43 0,0 0,-8.94 0L5.65,7.67a0.63,0.63 0,0 0,-1.09 0.63L6.4,11.48A10.81,10.81 0,0 0,1 20L23,20A10.81,10.81 0,0 0,17.6 11.48ZM7,17.25A1.25,1.25 0,1 1,8.25 16,1.25 1.25,0 0,1 7,17.25ZM17,17.25A1.25,1.25 0,1 1,18.25 16,1.25 1.25,0 0,1 17,17.25Z"/> <path android:fillColor="#FF000000" android:pathData="M17.6,11.48 L19.44,8.3a0.63,0.63 0,0 0,-1.09 -0.63l-1.88,3.24a11.43,11.43 0,0 0,-8.94 0L5.65,7.67a0.63,0.63 0,0 0,-1.09 0.63L6.4,11.48A10.81,10.81 0,0 0,1 20L23,20A10.81,10.81 0,0 0,17.6 11.48ZM7,17.25A1.25,1.25 0,1 1,8.25 16,1.25 1.25,0 0,1 7,17.25ZM17,17.25A1.25,1.25 0,1 1,18.25 16,1.25 1.25,0 0,1 17,17.25Z"/>

View File

@ -15,9 +15,28 @@
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:text="@string/hello_fragment" /> android:text="@string/hello_fragment" />
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="[loaded from app trans]" />
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:orientation="horizontal">
<ImageView <ImageView
android:id="@+id/imageView" android:id="@+id/imageView"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" /> android:layout_height="wrap_content"
tools:src="@drawable/ic_android_24dp" />
<ImageView
android:id="@+id/imageView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
tools:src="@drawable/ic_android_24dp" />
</LinearLayout>
</LinearLayout> </LinearLayout>