Affichage des articles dont le libellé est Some. Afficher tous les articles
Affichage des articles dont le libellé est Some. Afficher tous les articles

vendredi 27 février 2015

[Q] Need some helps with my Nook HD+ topic






My Nook HD+ usually goes mad. It pops up apps without my control, and then It runs wild. So I decide to turn it to the factory mode. However, I cannot register for my account so I decide to skip that step. Right now, my Nook is in some kind of "test mode" using the "test account" which cannot connect with the internet, and the problem above is not all gone also. When I try to set up another profile, it keeps running but no response.
Anyone gives me some advice about the "pops up" problems and how to turn my Nook HD+ back to the android version.
Please give me step-by-step advice because I am a newbie at this :crying: :crying:






Name Some Scaletype ??? topic






I M Trying To Add Image In My Statusbar Like A FB Timeline :)
I Did It But The Pic Is Shown Only In Left Side ..And The Other Part Remains Blank

I Want To Cover it up fully

in xml file i found


Code:


android:scaletype=centrecrop

For which my image is not getting fully over the Required Portion

I Tried by Putting Wrap_content & fill_parent in place of Centrecrop but i get error while recompiling


so if u knw thn plz help me with that

just give me some scaletype names






jeudi 26 février 2015

[Q] Some apps don`t run! topic






Hi all A700 users,
Please help me, i have a big problems, all games a have installed manually, like The Dark Knight Rises, all versions of NOVA and more game, after installing (and move bla... bla... you know) and push icon an message appear: Unfortunately, "game name" has stopped. OK... but, game installed via Goggle Play works fine, like FIFA 15, Castle Clash, Shadow Fight etc. etc. Why?
Tech data: I have the latest nightly PAC MAN Rom KK 4.4.4, but i tried RC3 versions, CM latest versions, AOKP KK4.4.4. but same situations... NO game working.
I use latest APEX Launcher, root, #Superuser, CWM 6044.
Thank you in advance for all response!
(Sorry all for my bad english )

Later Edit:
The mentioned game works fine on my Samsung Note Pro 12.2 tablet.
Please tell me why don`t run on A700?






mardi 24 février 2015

[Q&A] Some extra features in ROMSettings.apk and more topic






Q&A for Some extra features in ROMSettings.apk and more

Some developers prefer that questions remain separate from their main development thread to help keep things organized. Placing your question within this thread will increase its chances of being answered by a member of the community or by the developer.

Before posting, please use the forum search and read through the discussion thread for Some extra features in ROMSettings.apk and more. If you can't find an answer, post it here, being sure to give as much information as possible (firmware version, steps to reproduce, logcat if available) so that you can get help.

Thanks for understanding and for helping to keep XDA neat and tidy! :)






Just got the Fire TV, have some questions topic






A few questions i just got the Fire TV, i want to be able to run a speed test i tried sideloading the official Speed Test app and it installed but didnt seem to work on the fire, any other apps i can use to do this?

What is the benefits of rooting this? i use to root awhile ago with my phones but since have stopped, whats the benefits for this one?

Can anyone tell me a bluetooth mouse that is compatible with the device? basic and cheap

i might add more questions but this is it for now






Just got my First Note device! need some tips! topic






Hello guys i just bought myself a brand new Note 4 (N910F) from Germany model.

Its my First Note device, my last device was the s3 i9300 but my motherboard fried up so i decided to move on :)

Can you give me some cool tips to improve my Note expirience?
For example the best apps to use the S pen with?

Best app for taking notes? Or something useful for university?

Tips what to turn off or on?

Tips to save battery life?

Thanks in advance :)

Sent from my SM-N910F using XDA Free mobile app






[Q] Thinking of buying a Galaxy Tab S,need some info. topic






Hello folks,the time has come for me to replace my Nexus 7(2012) and i'm thinking of getting a 8.4 inch Tab S.
.Since i'm used to Nexus' unlockable bootloader,and not having a Samsung device since Galaxy II,i'd like some info regarding rooting and generally tampering with this device
.Do you lose your warranty if you root this?Or is there any trick like "triangle away" was back in the S2 days..?
Furthermore,do you think this device is a good choice?In my country i find the 16GB variant around 280 Euros,and i can't seem to find anything remotely good for that price..
Lastly,how does the device perform with custom roms?I really hate Touchwiz UI.. :S
Thanks in advance for the help :D






dimanche 22 février 2015

[Q] listView has unwanted rows in some phones topic






I have created an android program which contains listview. Emulator and my phone (Samsung Galaxy S) shows like;
-see First Attachment (1.png)
But when I open my program in Samsung Note 3, it shows like;
-see Second Attachment (2.png)

It likes 2 empty rows(empty but their colors dark blue) and 1 real list view item. 2 empty rows, 1 real item, 2 empty rows, 1 real item ....

I tried each of item in listview. I removed each one and it does not solve my problem. And some bigger screen phones have same issue. How can i solve it?

my xml:

Code:


<RelativeLayout
                                android:id="@+id/tabTT"
                                android:layout_width="fill_parent"
                                android:layout_height="fill_parent">

                                <ImageView
                                    android:layout_width="wrap_content"
                                    android:layout_height="wrap_content"
                                    android:visibility="invisible"
                                    android:id="@+id/tabTT_icon"/>

                                <TextView
                                    android:layout_width="wrap_content"
                                    android:layout_height="wrap_content"
                                    android:text="Team Tactics"
                                    android:id="@+id/tabTT_main_text"
                                    android:textSize="13sp"
                                    android:textStyle="bold"
                                    android:textColor="#800000"
                                    android:visibility="invisible"
                                    android:layout_centerHorizontal="true"/>

                                <TextView
                                    android:layout_width="wrap_content"
                                    android:layout_height="wrap_content"
                                    android:id="@+id/tabTT_main_second"
                                    android:textSize="12sp"
                                    android:textColor="#000000"
                                    android:visibility="invisible"
                                    android:layout_below="@id/tabTT_main_text"
                                    android:layout_centerHorizontal="true"/>

                                <ListView
                                    android:layout_width="match_parent"
                                    android:layout_height="match_parent"
                                    android:id="@+id/tabTT_listView"
                                    android:clickable="true"
                                    android:layout_below="@id/tabTT_main_second"/>

                                <ImageView
                                    android:layout_width="wrap_content"
                                    android:layout_height="wrap_content"
                                    android:id="@+id/tabTT_ImageView"/>

                                <TextView
                                    android:layout_width="wrap_content"
                                    android:layout_height="wrap_content"
                                    android:id="@+id/tabTT_textView_name"
                                    android:textSize="13sp"
                                    android:textStyle="bold"
                                    android:textColor="#000000"
                                    android:layout_marginLeft="68dp"/>

                                <TextView
                                    android:layout_width="wrap_content"
                                    android:layout_height="wrap_content"
                                    android:id="@+id/tabTT_textView_subName"
                                    android:textSize="12sp"
                                    android:layout_below="@id/tabTT_textView_name"
                                    android:textColor="#000000"
                                    android:layout_marginLeft="68dp"/>

                                <ProgressBar
                                    android:layout_width="fill_parent"
                                    android:layout_height="wrap_content"
                                    android:id="@+id/tabTT_ProgressBar"
                                    android:layout_below="@id/tabTT_textView_subName"
                                    android:layout_toRightOf="@id/tabTT_ImageView"
                                    android:progressDrawable="@drawable/progress_bar"
                                    android:visibility="invisible"
                                    style="?android:attr/progressBarStyleHorizontal"/>

                                <TextView
                                    android:layout_width="wrap_content"
                                    android:layout_height="wrap_content"
                                    android:id="@+id/tabTT_textView_percentage"
                                    android:layout_centerHorizontal="true"
                                    android:layout_below="@id/tabTT_textView_subName"
                                    android:textColor="#800000"/>

                                </RelativeLayout>


my adapter:

Code:


public static class TTAdapter extends ArrayAdapter<Achievement> {

    public TTAdapter(Context context, ArrayList<Achievement> users) {
        super(context, 0, users);
    }

    @Override
    public View getView(final int position, View convertView, ViewGroup parent) {

        Achievement user = getItem(position);
        // Check if an existing view is being reused, otherwise inflate the view
        if (convertView == null) {
            convertView = LayoutInflater.from(getContext()).inflate(R.layout.list_item_ach, parent, false);
        }

        convertView.setOnClickListener(new View.OnClickListener() {
            public void onClick(View v) {
                Achievement clicked = getItem(position);
                if(clicked.progressFloatSecond!=-1){
                    Toast.makeText(getContext(), "Left: " + NumberFormat.getNumberInstance(Locale.US).format(clicked.progressFloatSecond - clicked.progressFloatFirst), Toast.LENGTH_SHORT).show();
                }
                else Toast.makeText(getContext(), "One-Time Mission!", Toast.LENGTH_SHORT).show();
            }
        });

        TextView name = (TextView) convertView.findViewById(R.id.tabTT_textView_name);
        TextView subName = (TextView) convertView.findViewById(R.id.tabTT_textView_subName);
        ImageView imVi = (ImageView)convertView.findViewById(R.id.tabTT_ImageView);
        ProgressBar progBar = (ProgressBar) convertView.findViewById(R.id.tabTT_ProgressBar);
        TextView percentageFloat = (TextView) convertView.findViewById(R.id.tabTT_textView_percentage);
        DecimalFormat df = new DecimalFormat("##.##");

        name.setText(user.name);
        subName.setText(user.subName);
        imVi.setImageResource(user.picInt);
        progBar.setVisibility(View.INVISIBLE);
        percentageFloat.setVisibility(View.INVISIBLE);
        if(user.progressFloatSecond!=-1){
            progBar.setVisibility(View.VISIBLE);
            progBar.setMax(user.progressFloatSecond);
            progBar.setProgress(user.progressFloatFirst);
            percentageFloat.setText(df.format(user.progressFloat) + " %");
            percentageFloat.setVisibility(View.VISIBLE);
        }
        return convertView;

    }
}


By the way, in application there are 6 different list views and all have same problem. I write here only one listview's code.








Attached Thumbnails


Click image for larger version<br/><br/>Name:	1.png<br/>Views:	N/A<br/>Size:	65.1 KB<br/>ID:	3178871
 

Click image for larger version<br/><br/>Name:	2.png<br/>Views:	N/A<br/>Size:	36.2 KB<br/>ID:	3178872
 

















[Q] Cannot install any KitKat ROM : some symlinks failed (status 7) topic






Hello,

I am very happy because I have my Nexus One back after borring it to my father. I really want to install Kitkat. However, I couldnt because I have this blocking error message when installing any zip ROM : symlink : some symlinks failed

I did not find any solution on Internet

For information :
o I have the same issue with ClockWork recovery and TWRP 2.6.0.0
o I tried to un-mount /cache
o I can install CyanogenMod 7 (Android 2.3.3) without issue
o I used BlackRose and resized system to 250 MB and cache to 16 MB


Is there someone who want and can help me ?


Thank you in advance






[Q] Some set-up help and advice for planned media device. topic






Hi all!
So I am switching my device out soon but I love to have a second handheld so that my load on phones is decreased.
My current S2 is fine and all but I wanted to seek some advice on the following questions:
1. What is a very minimalistic way to run android? I know that CM and stuff exist (having ran it before and currently running PAC-ROM) but can I go more....uhm....clean?
2. What is a way to keep the device clean from stuff that may slow it down? What should I avoid if I intend to use this phone as a portable media device that runs at optimal speeds? Over-clocking?
4. Why is my maths very bad?
3. What is the most stable/ A very stable android version/ROM to run on the device? Every time I search it is only people recommending a ROM that is 'Stable', but I wanted to know what are the most stable for the long run?
5. Is there a ROM dedicated to media support?
6. Any recommendations as to what to do with the device from your perspective?

I would not like to waste any more of your time, but after the Internet failing to give me answers that benefit me I turned here for help.
All Advice welcome.
Device info:
SGSII I9100 International ver.
Running PAC ROM 4.4.4 KitKat Nightly 28th Jan 2015
Stock CPU clock.
Too many damn apps.






Need some Files for a Qualcomm HS-UDB QDLoader 9008 topic






Hi,
Can any of you Phone GURUS help me with some files or at least a procedure to extract from a Stock Rom if possible :
aboot.mbn
boot.img
partition0.bin
pitfile.pit
rpm.mbn
sbl1.mbn
sbl2.mbn
sbl3.mbn
tz.mbn

Some was able to find a method for the T989 : http://forum.xda-developers.com/show...?p=57104903&po
I was wondering if someone could help

Please and Thank you






samedi 21 février 2015

How to downgrade back? And some shield issues topic






How can i downgrade back? I hate the colors of the new update red sucks and so pink/violet can i downgrade without loosing files?

Iv'e been playing Soul seeker and iron knights on my Xperia Z2, Shield portable and shield tablet. All devices have root access and has the same tweaks or root apps such as greenify etc etc but on my shild tab the games always says it detects unauthorized program or hack progam and closes i dont have lucky patcher or freedom installed both games work perfectly on my xperia and portable. Any suggestions?






is Lollipop a step backwards... in some ways it is!!! topic






Lollipop seems a little quicker and better battery life.

However it seems to me the developers have changed many things just for the sake of it, and many of those old good things are now worse. Many require a lot more clicks to do the same job.

For example, the pull down status bar quick settings isnt as good and isnt customisable like it used to be. and many features are no longer intuitive to open or access them.

Changing txt size in messaging simply by using volume up or down was convienient.

The camera is not as easy to use. Beforehand the video and the photo button were on the main camera screen so you could instantly select one or the other to quickly take a photo or a video. Now you must swipe the screen and then select the video or the camera option and then when the screen refreshes you can then click the button to start recording to take the photo. That can litterally add 5 seconds to the time it takes to get a video going plus you need to concentrate on the camera screen to get the process correct, so you are late capturing the action and cant watch what was going on with whatever it was you wanted to video or take a shot of.

The camera settings are not as customisable as it used to be either and currently you cant even select to store in the external sd card

Phoning and txting is not as easy or simple as it used to be. Eg, in "recents" you used to be able to swipe right to call a contact and swipe left to text. Now to call you tap on them. then have to tap it again to select to call them. And if you want to text you need to tap on the icon next to the name or number and it opens the contact, then you need to select the message icon to txt them. Friggen stupid!

What else am I missing here??? Im probably being a bit picky... but why make it worse!






samedi 14 février 2015

Need some help topic






Hi


My TWRP recovery say´s

E: Can't mount /cache/recovery/command
E: Can't mount /cache/recovery/log
E: Can't open /cache/recovery/log
E: Can't mount /cache/recovery/last_log
E: Can't open /cache/recovery/last_log


How can i fix this?

Thanks






[Q] Need some help rooting my HTC One M7 topic






Hello,

in the near future I will try to unlock and root my international HTC One M7. Because I don't have many experiance with rooting (so far I have rooted only one phone (HTC Desire Z) a few years ago) I would apriciate some help and tips.

I have seen some nice video tutorials how to unlock and root HTC M7 on xda website:
http://forum.xda-developers.com/htc-one/#root

The only problem is that these videos seems quite old and I don't know if procedure is still the same on newer versions of HTC One software? Currently I am running stock Sense software (Android 4.4.3, Sense version 6.0, Software number: 6.09.401.11)

Please tell me if I can follow these video tutorials to root my One even thou I am running newer software and if not which rooting procedure do you recomend for me?

Thanks in advance!

Tine






[Q] Going to buy this phone, need some questions answered. topic






I will not be doing any rooting and no customs roms.

Model no - SM-N750

1. How does the perform after all the stock updates to this date? I know touchwiz is laggy but apart from that, does the phone hang while mild multitasking?

2. Heard the phone has overheating issue? (any comments on this)

3. People reporting about the phone restarting on its own, randomly or while charging?

4. How bad is the screen flickering? I think the fix is somewhere in the fourms.

5. Is there all the (note 3) s pen features on (note 3 neo), or is it a cut down thing, like reduced pressure senstivity or something?






[Q] Lock symbol on some apps after performing Clean Up.... topic






Lately I have been getting a lock code on app's icon while performing clean up. Clean up is used by long pressing menu. I have attached screen shot of the same. Can anyone let me know why does this happen.








Attached Thumbnails


Click image for larger version<br/><br/>Name:	Screenshot_2015-02-14-12-35-36.png<br/>Views:	N/A<br/>Size:	82.9 KB<br/>ID:	3164827
 

















vendredi 13 février 2015

Some Screenshots of the new Lollipop release topic






I am loving the looks, I mean the Whitish themes everywhere, that's what I wanted for so long. Just some screenshots in case one want to look how some sections look, for fun, that's all. I am stating some of my views on it too, please share yours too.

However not everything is great, I don't like how they have ruled out the scaling on the options, you might encounter one or two mi****s every now and then. I mean when you tap on option of some app, the OK, Discard etc. options have no box outlining those options, so you don't know where the scaling finishes. They shouldn't have done that. Tapping with fingers (which is and will be mostly done) can't always be precise. I have already miss tapped in some places!

I also don't like how they changed the notification clock font size, the AM/PM font is bigger than the clock itself, weird. The lockscreen clock has also been redone, it now has a slimmer font that KitKat, which I am not a fan of.

And I don't know whether this is a placebo effect or not, but am I the only one who is feeling that the in call loudness (volume) is a little softer than KitKat? Don't know, can't be sure.

The Dialler app now goes full screen, I mean edge to edge, simple change yet looks much much better :)

The Multi-Window mode doesn't have any small U shaped notification any more when enabled at the side of the screen, you just long press the back button to enable or disable it.

The lock screen notifications are directly tap-able and expandable, instead of dragging down and then tapping it to expand it from KitKat.

I guess you guys can use this topic to report bugs, whichever you have found. If this topic seems like a duplicate then remove it immediately.

Have fun.

PS: One more thing, I flashed the Polish version of the ROM on my Arab N9005, 32 GB. I tried to flash the German ROM first, because it had multi CSC but it failed to flash, so keep that in mind, I mean I think the German ROM is meant for 16 GB variants only.








Attached Thumbnails


Click image for larger version<br/><br/>Name:	Screenshot_2015-02-14-08-18-05.png<br/>Views:	N/A<br/>Size:	163.3 KB<br/>ID:	3164568
 

Click image for larger version<br/><br/>Name:	Screenshot_2015-02-14-08-18-19.png<br/>Views:	N/A<br/>Size:	130.2 KB<br/>ID:	3164569
 

Click image for larger version<br/><br/>Name:	Screenshot_2015-02-14-08-20-24.png<br/>Views:	N/A<br/>Size:	105.6 KB<br/>ID:	3164570
 

Click image for larger version<br/><br/>Name:	Screenshot_2015-02-14-08-23-42.png<br/>Views:	N/A<br/>Size:	59.8 KB<br/>ID:	3164571
 

Click image for larger version<br/><br/>Name:	Screenshot_2015-02-14-08-24-33.png<br/>Views:	N/A<br/>Size:	73.6 KB<br/>ID:	3164572
 

Click image for larger version<br/><br/>Name:	Screenshot_2015-02-14-08-27-59.jpg<br/>Views:	N/A<br/>Size:	179.1 KB<br/>ID:	3164573
 

Click image for larger version<br/><br/>Name:	Screenshot_2015-02-14-08-31-07.png<br/>Views:	N/A<br/>Size:	107.4 KB<br/>ID:	3164574
 

Click image for larger version<br/><br/>Name:	Screenshot_2015-02-14-08-31-51.png<br/>Views:	N/A<br/>Size:	109.0 KB<br/>ID:	3164575
 

Click image for larger version<br/><br/>Name:	Screenshot_2015-02-14-08-32-08.png<br/>Views:	N/A<br/>Size:	141.8 KB<br/>ID:	3164577
 

Click image for larger version<br/><br/>Name:	Screenshot_2015-02-14-08-33-30.png<br/>Views:	N/A<br/>Size:	102.0 KB<br/>ID:	3164578
 

Click image for larger version<br/><br/>Name:	Screenshot_2015-02-14-08-36-22.jpg<br/>Views:	N/A<br/>Size:	237.0 KB<br/>ID:	3164579
 

Click image for larger version<br/><br/>Name:	Screenshot_2015-02-14-08-37-20.png<br/>Views:	N/A<br/>Size:	130.1 KB<br/>ID:	3164580
 

Click image for larger version<br/><br/>Name:	Screenshot_2015-02-14-08-40-56.png<br/>Views:	N/A<br/>Size:	165.3 KB<br/>ID:	3164590
 

Click image for larger version<br/><br/>Name:	Screenshot_2015-02-14-08-45-36.png<br/>Views:	N/A<br/>Size:	87.3 KB<br/>ID:	3164591
 

Click image for larger version<br/><br/>Name:	Screenshot_2015-02-14-08-46-38.png<br/>Views:	N/A<br/>Size:	56.7 KB<br/>ID:	3164592
 

Click image for larger version<br/><br/>Name:	Screenshot_2015-02-14-08-47-15.png<br/>Views:	N/A<br/>Size:	192.4 KB<br/>ID:	3164593
 

Click image for larger version<br/><br/>Name:	Screenshot_2015-02-14-08-47-57.jpg<br/>Views:	N/A<br/>Size:	134.4 KB<br/>ID:	3164595
 

Click image for larger version<br/><br/>Name:	Screenshot_2015-02-14-08-58-24.jpg<br/>Views:	N/A<br/>Size:	109.8 KB<br/>ID:	3164596
 

















TWRP seems to have some bugs... topic






Not quite sure exactly what's happening, but it's repeatable and noticeable and for anyone less-tech savvy might convince them they're bricked.

It seems to be when a zip comes with an installer (such as Android Revolution) - once the install starts it's fine as long as I touch the screen every few seconds, however if I don't touch it for a while, say when it's loading system files and then continue on with the installer and get to the end - the installer will exit gracefully then I will see the usual "unlock" for TWRP, and before I can hit it the screen will go completely black.

While it's in this state, the phone will not respond to anything. Even a hard reset (power+down) doesn't do a thing. The only way it signifies it's still alive is by running 'adb devices' when plugged into a computer, then adb reboot.






Can I get some feedback about accuracy and overall user satisfaction please? topic






Hello!
My wife wants to get a fitness band like this to track steps, maybe bike, etc. Since she has a Note 4 I thought this one could be nice but reviews are not all that great.
What is the status these day?

Thanks!