Questions tagged [jetpack]

Jetpack is a WordPress plugin that enables self-hosted WordPress installs to connect to WordPress.com to get additional features, powered by its cloud infrastructure.

Jetpack is a WordPress plugin that enables self-hosted WordPress installs to connect to WordPress.com to get additional features, powered by its cloud infrastructure.

445 questions
0
votes
0 answers

Flashing Jetson TX2 but NVIDIA SDK Manager cannot avoid fail

I was trying jetpack 3.3.4 , ubuntu 18.04 jetpack 4.5.1 , ubuntu 18.04 jetpack 4.6.1 , ubuntu 18.04 jetpack 4.6.2 , ubuntu 18.04 jetpack 4.6.3 , ubuntu 18.04 I studied that this process is easily fail so I thought using different version jetpack…
user20396381
0
votes
0 answers

Top App Bar and Bottom Bar load first but content of tabs load slowy

I have created a bottom bar like below code snippet and integrate it into Scaffold in jetpack compose but when app starts first time it take a time 2/3 second after rendering setContent { val navController =…
0
votes
2 answers

How to hide the fragment name/id from the toolbar when using BottomNavView and AppBarConfiguration

I have an activity, where i setup the Bottom Navigation View and appCompat toolbar. And I write the code like this. But due to this, my toolbar shown like this. which i don't want. How can i hide the fragment name from my toolbar?
Farooq Ahmad
  • 41
  • 1
  • 9
0
votes
1 answer

How to change textstyle to Material headline?

How to changes text style Material headline? Text("Lorem Ipsum", style = TextStyle() // ???? ) thanks
0
votes
2 answers

how to make Parralel scroll in jetpack compose?

I am makeing a profile screen in jetpack compose I want to make the Blue background behind the image scroll up when the image is scrolled up because it doesn't look good :) This is what I need help with, see the gif to understand better. how can I…
0
votes
0 answers

is there a way to change TextOverflow.Ellipsis or maxLines, dynamically depending on the view size?

is there a way to use overflow = TextOverflow.Ellipsis dynamically depending on the view size? I am trying to implement this screen that I designed in Figma my problem is with the More Information Section. I used Text object with the attribute…
0
votes
0 answers

How can I request the vibrate permission in API level 33 (I use Kotlin-Jetpack Compose)?

I want when the user clicks the button. if vibration is not on, it will ask user to enable vibration...I don't know what to do go to the system docs android I tried but It's not OK
0
votes
0 answers

How can we make a dynamic rating bar with user interaction enable in android jetpack composable ? I have try different library but no luck

I Have tried making custom rating bar with user interaction with jetpack compose and apply different library but no luck till now can anybody provide me a piece of code ?
0
votes
0 answers

How can I remove the space inside the OutlinedTextField from Jetpack compose | android

I think it's the default padding I tried all the methods related to adding padding and removing the default padding but none of them worked, and I use OutlinedTextField because I can easily use LocalFocusManager with it OutlinedTextField( …
0
votes
0 answers

Jetpack Compose Webview's Select Tag has weird animation

I'm new to Jetpack Compose I'm going to develop a Webview inside my app. But when I use WebView with Jetpack Compose, select tag will has a weird animation. When I click dropdown box, options will be widely opened. But if I use WebView without…
0
votes
1 answer

xml preview is not working in android studio

In Android Studio Dolphin | 2021.3.1 Patch 1,xml preview is not working on particular layouts.Is there any solution to solve this problem? Please help me to solve the problem.
user20108370
0
votes
2 answers

How to place in the corner (bottom end) of column

How can I put a widget/compose in bottom end corner of Column? Column( verticalArrangement = , horizontalAlignment = ) { // omitted codes } I only find horizontal and vertical position to it? IS there a way to put a widget/compose in bottom…
Inoue.T
  • 1
  • 1
  • 5
0
votes
1 answer

I save the rootView in the fragment. Will memory leaks occur when the fragment is destroyed?

I now need to keep the status when I return, so I write as follows: @AndroidEntryPoint class IndexFragment : Fragment() { private var rootView: View? = null private var isFirstLoad = true override fun onCreateView( inflater:…
史新雨
  • 1
  • 1
0
votes
1 answer

Error while Decrypting file encrypted with Jetpack

No result while decryption. What i am doing is simple encryption and decryption. Encryption occured as per expected but get -1 byte from encrypted file. I search a lot but didnt file solution. Even not getting any error related to key, file, or…
0
votes
1 answer

Mutablestateof - State hoisting

What to do to manage one state in two functions? (openDialog) How to transfer openDialog state from ProductDialog() to AppBar()? I know I can make a separate class per state but I don't want to. @Composable fun ProductDialog() { val openDialog =…
Krystian
  • 3
  • 1