• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

KgTv Player with an activation code that includes more than 5000 channels for life

Today I present to you a wonderful application KgTv player that includes many advantages that are not available in other applications such as the search feature and the popup window and the speed and ease of use and the size is very small: it is also very safe if it is available in the Google Play Store
These are the full application features:

-- Pop-up window for an independent application that allows you to view any channel, And enjoy the same time using other applications such as Facebook and Google Chrome.
--⏰ Super speed when viewing channels and perform other tasks.
-- Quality Change System Allows you to choose the quality of the broadcast as appropriate.
-- The possibility of changing the place of and size player easily and at any time and depending on your taste.
-- Channel search system is easy and fast.
--⚠ detector errors which reveal 90% of the errors, which helps to solve problems.
--✔ Automatic verification system for links provides effort and tiring experience.
-- system tags add to the aesthetic application and it organizes the channel list It supports languages and even qualities.
-- Advanced internal player supports most types of processors.
-- support secure communication via the https protocol.
--➕ Allows you to add channel listings from a link to a file or to a text file .
--✍ Ability to edit ✎ or delete channels easily.
--♻ automatic debugger for the names of the channels.
--⛔ automatic system to remove pornographic channels works by 70%.
-- Automatic system to reconnect to the server when a defect occurs.
-- ️ fully support for Smart TV and Android Box.
-- Support system shortcut links ShorTv.


Enjoy now kgtv player with more than 5000 channels
Code: FL-UX-US
Number of channels: 5000 channels
Duration: Lifetime, with updating for each period





Application link on Google Play
https://play.google.com/store/apps/details?id=tk.kgtv


Pictures from the application:


86722710_614796009084026_5707801143116038144_o.png

86730814_614796055750688_4469879869194371072_o.png

86776547_614796085750685_2982345605814157312_o.png

86793527_614795892417371_9168700530560598016_o.png


86738717_614795802417380_5294050356328660992_o.png

86970746_614795839084043_7888222324078411776_o.png


86697898_614795962417364_1534716330257678336_o.png



Apps How can i set a padding for a Button element that uses android:background+app quits instantly

Hello to everyone in this forum,
i'm new to android-development and i have a question:

i'm trying to create a rounded button,i found a tutorial that descibles the android:background attribute for the Button element for the layout files. So i created the buttonshape.xml in the drawables folder and have the following layout file:
Code:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent">

    <LinearLayout
        android:orientation="horizontal"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:padding="5dp">

        <Button
            android:id="@+id/date_from_button"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:onClick="onButtonDateFrom"
            android:background="@drawable/buttonshape"
            android:text="@string/datum_from_button" />

        <Button
            android:id="@+id/date_to_button"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:onClick="onButtonDateTo"
            android:text="@string/datum_to_button" />


    </LinearLayout>

    <DatePicker
        android:layout_gravity="center"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:visibility="gone"/>

    <LinearLayout
        android:orientation="horizontal"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <Button
            android:id="@+id/time_from_button"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:onClick="onButtonTimeFrom"
            android:text="@string/time_from_button" />

        <Button
            android:id="@+id/time_to_button"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:onClick="onButtonTimeTo"
            android:text="@string/time_to_button" />


    </LinearLayout>

    <DatePicker
        android:layout_gravity="center"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:visibility="gone"/>

    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/search_start"
            android:layout_gravity="center_horizontal"/>

        <Button
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="@string/search_start"/>

    </FrameLayout>
</ScrollView>
</LinearLayout>

Now my problem is that i'm not able to set a padding for the Button, no matter which attribute i set i get no padding and the app stops directly after starting it. Here is the code of the drawable/buttonshape.xml file:

Code:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" >
    <corners
        android:radius="23dp"
        />
    <solid
        android:color="#FF0000"
        />
    <stroke
        android:width="2dp"
        android:color="#878787"
        />

    <padding
        android:left="5dp"
        android:top="5dp"
        android:right="5dp"
        android:bottom="5dp"
        />
</shape>
I don't understand what i'm doing wrong so the app isn't even starting... but i get no errors when building it... please help a lost soul.

best regards,
workbench

Apps Image is not changed when upload new image

In Android Studio, I can get to change an image in Firebase Storage.
But When I run app again, the old image still in cache and is loaded on ImageView, even I link new image with Firebase directly.

Is there someone with this same problem which could help me?

P.S.: I can save the image in Firebase Storage.

My code is:
Java:
public static void changePhoto(final Context context, String pUserId, Intent pData){
        Uri urlPhoto =  pData.getData();
        StorageReference mStorage;
        Bundle extras = pData.getExtras();
        Bitmap bmp = (Bitmap) extras.get("data");
        ByteArrayOutputStream bos = new ByteArrayOutputStream();

        bmp.compress(Bitmap.CompressFormat.WEBP, 100, bos);
        String imageEncoded = Base64.encodeToString(bos.toByteArray(), Base64.DEFAULT);
        mStorage = FirebaseStorage.
                getInstance().
                getReference(pUserId + "/" + pUserId + ".webp");
    

        mStorage.putBytes(bos.toByteArray()).addOnSuccessListener(new OnSuccessListener<UploadTask.TaskSnapshot>() {
            @Override
            public void onSuccess(UploadTask.TaskSnapshot taskSnapshot) {

                Toast.makeText(context, "Ok. Photo uploaded with success.",Toast.LENGTH_LONG).show();
            }
        }).addOnFailureListener(new OnFailureListener() {
            @Override
            public void onFailure(@NonNull Exception e) {
                Toast.makeText(context, "!!! Error !!!",Toast.LENGTH_LONG).show();
            }
        });
    }

How to enable LockScreen by default in android pie

Hi Everyone.

I am new for android platform source code. I have a requirement like below please help me to achieve that.

My requirement was, I need to enable this screen lock feature and the specified password in AOSP itself. once i build the source and flashed the images to the device. The device should ask the password to access the system once it booted. how to do this. Any help is really appreciated.

Thansk & Regards,
VImal.

Help Uploading an intranet based application to Play Store

I am currently working on a intranet based application wherein the servers would not be deployed to cloud environment.

I have few queries surrounding that:


1. Does Google allow intranet based application to be deployed to Play store?

2. If Yes, since my servers are to be installed locally(only on windows) how do i provide the server access so that Google can do the testing as per the play store upload process?


**I know intranet based app should not be sent into production, but this requirement is very specific. Any help would be greatly appreciated.

Guess the Flag - World Flags

Which country does this flag belong to?**
How well do you know flags and its countries? Match the flags with their respective nations. Be the ultimate quiz master!

"Great app with a very fun but educational way to learn the flags which can always be useful!! Thanks!!" - ★★★★★

• How well do you know flags and its countries? Become a professional!
• Match the flags with their respective nations.


★ frequent updates
★ source of knowledge
★ countries trivia
★ great fun

Challenge yourself to guess the countries. Test your knowledge of national flags!

https://play.google.com/store/apps/details?id=com.silverpoint.guesstheflagworldflags

Attachments

  • 20200316_083452.jpg
    20200316_083452.jpg
    459.9 KB · Views: 177

Apps "Cannot resolve symbol 'array' " in R.array.array_name

Trying to populate a dropdown box via a Spinner. I have a <string-array name="currencies_array"> defined and populated in strings.xml. The array in R.array.currencies_array is highlighted red saying "cannot resolve symbol 'array' ". Exact code from android documentation itself and stackoverflow articles.

Android doc for spinner under "populate the spinner with user choices: https://developer.android.com/guide/topics/ui/controls/spinner#java
StackOverflow article (based on reply by Gurinder Singh, 3rd down): https://stackoverflow.com/questions/13377361/how-to-create-a-drop-down-list

Code:
ArrayAdapter<CharSequence> adapter = ArrayAdapter.createFromResource(this, R.array.currencies_array, android.R.layout.simple_spinner_item);
adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
dropdown.setAdapter(adapter);

Whats the throttle speeds for metropcs after 35GB mark?

That sounds more like tower congestion than anything else. My understanding is that 'deprioritization' - not outright throttling - starts at 35+ GB use. If your closest T-Mobile tower is very congested, your speeds can definitely slow. Since it's not an actual tower issue, they probably wouldn't do anything about it, but you can call customer service and tell them about it.
In contrast, my family is also on unlimited. My son used over 60 GB last month and was able to watch streaming video with no issues all month long.

I'm no longer past the 35GB mark now and I'm still getting severe connection issues. Ridiculously bad connection out here in the country even though I got 4 of 5 bars of 4G LTE, and my phone is within 10 feet of my laptop so my connection to it is 4 of 4 bars.

Its so bad right now PDANet keeps throwing "reconnected" messages at me every 30-120 seconds or so, and my speed test shown dialup levels of speed with 0KB/s upload speed for 50% of the upload test.

This is so frustrating, I don't know what to do. I switched from Boost Mobile because Metro has far more signal out here where Boost, I can't even use my phone anywhere within 2 miles of my place except a 1 inch by one inch squared location in my room where I had to tape the phone down on top of a box of dominos on top of the mini fridge on top of a wash rag to raise it just enough to get that 1 bar of 4G LTE.

But now that I'm on Metro, my speeds are terrible. Except during certain portions of the day, and while I had just gotten the service the whole first 3 days were great when I used Mobile Hotspot not using PDANet.

-- As for "exact geolocation" yea no. I can say Northwest Arkansas, at least. But giving exact, no.

--- As for the rest;
House, one floor, Galaxy S8.

---- Last edit:
I checked out Fi, and no, its worse. They throttle you after 15GB usage and it'd cost more than my current plan does by quite a lot. Considering I use 60GB/m on a regular basis.
Its definitely tower congestion even if ur under 35 and ur metro but ur surrounded by tmobile users ,their transfer will be before urs Towers belong to tmobile ,metro is just piggybackingboff tmobile towers that's why u suffer under the 35 gig mark , amd u must live in a city right ? I live in the country evrybody uses cricket I use metro only time I'm screwed is around the 15th of the month I pass 35, I use about 80 gigs evry month

Forgot where I have turned data usage off

Hello,
I have a huawei p20.
I have a problem regarding using data while roaming. I accidentely turned data on in a country where I shouldt and after that I turned data off somewhere in settings completely. Now I am at home and when I turn data on it doesnt function. I cant seem to remember where have I turned data usage off and I want to aks if anyone knows where this should be?

Thanks for the help.
Airplane mode easiest way , turns off wifi bluetooth and data and phone nothing works no calls or text in or out. I dont know why yall go the long into settings ,

Help Screen is unreadable, but I need to download pics

That photo indicates at least you can see the screen even if its touch interface might not be working. If it's just a matter of the digitizer is messed up, it might be worth trying to use a Type C-to-USB adapter to connect a USB mouse and/or keyboard to key in past the lock screen. If you can at least get it unlocked than you can backup the data before sending it off to be serviced.
https://www.amazon.com/gp/product/B...OQIKU&linkId=2b192d2bb2a847371300f1e455c47c9e
That's a good call: you can see enough of the keypad that you can probably get an indicator of where the cursor is on the left-hand row, then work out your moves from there.

Keyboards are easier to judge semi-blind than mice (I speak from experience of using both with a broken screen).

Filter

Back
Top Bottom