Posts

Nested Linear layout part 3

Image

linear layout(horizontal ) part 2

Image

linear layout in android . working with linear layout in android studio

Image

Bottom Navigation Bar for Android

Image

incompatible hax module version 3 requires minimum version 4 no accelerator found

The SDK Manager will download the installer to the "extras" directory, under the main SDK directory. Even though the SDK manager says "Installed" it actually means that the Intel HAXM executable was downloaded. You will still need to run the installer from the "extras" directory to finish installation. So here is what you need to do: Download HAXM installer from  SDK Manager->Android SDK->SDK Tools->HAXM installer Open  <SDK_SRC>/extras/intel/Hardware_Accelerated_Execution_Manager/  and click the .dmg file to start install. After installed manually, it's better to restart your PC. Try to uninstall "Intel x86 Emulator Accelerator (HAXM installer)" from Android SDK manager, than install it again. That helped for me. Source

How do you change text to bold in Android?

Programmatically: You can do programmatically using setTypeface() : textView . setTypeface ( null , Typeface . NORMAL ); // for Normal Text textView . setTypeface ( null , Typeface . BOLD ); // for Bold only textView . setTypeface ( null , Typeface . ITALIC ); // for Italic textView . setTypeface ( null , Typeface . BOLD_ITALIC ); // for Bold and Italic XML: You can set Directly in XML file in <TextView /> like: android : textStyle = "normal" android : textStyle = "normal|bold" android : textStyle = "normal|italic" android : textStyle = "bold" android : textStyle = "bold|italic" Source: here Programmatically: You can do programmatically using setTypeface() method: Below is the code for default Typeface textView . setTypeface ( null , Typeface . NORMAL ); // for Normal Text textView . setTypeface ( null , Typeface . BOLD ); // for Bold only textVie...

Can't import database through phpmyadmin file size too large xampp

 Here is what I've done: Gone to my XAMPP installed directoy C:\xampp\php Open the "Configuration Settings" file named php.ini using your text editor, preferably you can also you Notepad for Windows machine. Somewhere nearby on line no 886, please update it to upload_max_filesize = 128M Similarly on line no 735 post_max_size = 128M On line no 442 max_execution_time = 300 On line no 452 max_input_time = 60 Restart your Apache from either XAMPP Control Panel or using CMD in Windows https://stackoverflow.com/a/6723485/969092 Done! Source: here