General :: Creating A Custom Rom?
Nov 25, 2012
Where would one begin to create an Android rom? I have looked at a couple of tutorials but they all require me to download some application that is not open source and only has binaries for Windows.
View 2 Replies
May 10, 2011
I looked /read the sample sofkeyboard code and tried to run it on my emulator and on my device .The console shows that the app is installed but i can't locate it on my desktop to use it but it shows the name in the application location.
View 1 Replies
View Related
Sep 21, 2010
How to create a custom themes and use it in the code? in menu how to implement theme option and apply for the activity?Please Help.
View 2 Replies
View Related
Aug 21, 2012
i am trying to create a custom keyboard for android. its mostly for experimental purposes. the keyboard only has 10 buttons, two on the top, 1 all the way to the left, 2 stacked on the left one, three stacked on the 2 on the left, then 2 more in the remaining space. its pretty tricky to explain... kinda like this:
HTML Code:
<table border="1">
<tr>
<td colspan="2">a</td><td colspan="2">b</td>[code]......
View 5 Replies
View Related
May 15, 2012
I wants to create a custom clock widget. Firstly I try to rotate one needle. There is no error found. But IMAGEVIEW stands still.
Here is my widget.java.
Code:
public class widget extends AppWidgetProvider {
@Override
public void onUpdate(Context context, AppWidgetManager appWidgetManager,
int[] appWidgetIds) {
Timer timer = new Timer();
[code]....
View 7 Replies
View Related
Nov 4, 2010
I have created a WebView layout, which is used to access a specific website, however it would be useful to edit or create a custom "Web page not available" resource when a handset doesn't have a network connection or the page times out. I know it's possible because if you open the app "Wikidroid" while a handset is in Airplane mode you receive "Article not available" error page instead of the standard Android "Web page not available" error page.
Click here for screenshots of the default and custom error pages. I have search high and low on the internet and haven't come up with any online resources which address this request.
View 1 Replies
View Related
Jan 8, 2010
We have in our project a keyboard with "Key" elements, this Key elements have attributes such as android:codes="119", android:keyLabel="w" and so on.My question is how can I include an custom attribute like a "android:alternativeKeyLabel" to do something else.
View 2 Replies
View Related
May 13, 2010
I want to create a list view custom like this link :
http://sites.google.com/site/androideyecontact/_/rsrc/1238086823282/Home/android-eye-contact-lite/eye_contact-list_view_3.png?height=420&width=279.
so far I have made a list view with text, and I am not extending list Activity, but I am extending Activity only.please if someone can provide me with a code for this.
View 2 Replies
View Related
Jul 29, 2009
I would like to create a widget that can reads its attributes from an XML file onCreate. I've created a Custom Button that extends Button widget. I would like to define its layout and styling in an XML, such that the widget can be reused across different views, with the same styling attributes. The notepad sample code does carry some pointers to this problem, however, it defines a XML layout with the component as View, inside LinearLayout, which is not really what I'm trying to achieve here.
View 4 Replies
View Related
Sep 26, 2010
Is it possible to create a layout based on (background) images? For example, there is well know app called Appie that uses this picture as a homescreen:
I might be able to recreate the layout with a TableLayout, but this will be difficult to get it perfectly aligned with the buttons in the image. The default layout options make it very difficult, or maybe impossible, to allow for selection of the buttons on the image (especially when the buttons are in an arc-path). Can anyone tell me how this is done?
View 1 Replies
View Related
Jun 5, 2010
I wonder how could is possible to make custom shape key on android keyboard. To create custom keyboard is relatively easy, but what needs to be done to create new buttons. They also need to respond with all events as normal keyboard.Any ideas where to start?
View 2 Replies
View Related
Nov 16, 2010
I want to create a custom OptionsMenu in my application. The default OptionsMenu display only three items in one row. Now i want to display five to six items having only icons. Also i want to change the background color of the OptionsMenu but not getting the appropriate way of doing this. If it is possible then please let me know about it.
View 1 Replies
View Related
Jul 14, 2012
I am using:
Android 4.0.3
OpenCV 2.4.2
Samsung Galaxy S2
The face-detection example (from the opencv 2.4.2) is working perfectly. But now, I would like to create a custom layout and actually work with just the data extracted from face detection and build a game on it. Not necessarily having the FdView surface taking the entire screen.
I have done these modifications below, but just a black screen is displayed. Nothing appears on the screen.
Changed the BaseLoaderCallback in FdActivity.java
Code:
//EXPERIMENT
setContentView(R.layout.fd);
FdView surface = (FdView) (findViewById(R.id.FdView));[code]....
View 2 Replies
View Related
Jul 26, 2010
I was wondering in what order the following methods - on Draw(), on Measure(), on Size Changed() - are called automatically when we create a custom component. Not sure if this question makes sense. I've just been kinda confused as to what the methods are supposed to do exactly.
View 1 Replies
View Related
Jun 11, 2010
I'd like to create a custom component which supports voice recognition. (Custom Component which displays voice recognition button if available). It will primarily be an extended EditText which should show the microphone button for voice recognition if it is available. I wanted to to look at the search app-widget on the homescreen but I don't find it in the source. This is intended to use the voice recognition as some sort of dictation device, i.e. the user does not have to type but use his voice instead. So could anyone please point me in some direction?
View 1 Replies
View Related
Mar 18, 2010
Here is a brief much more complete guide to creating your own Odin images for distributing custom ROMs or making backups. Thanks to kam197, BH_MAN, chadmd23, SoulCreator, and all the other community members.
Requirements:
A Samsung Behold 2 to backup/edit/test ROMs on
Root via try3/asroot2, persistent su, or modified kernel
Working ADB connection
SD Card with ~300MB free
Cygwin - if you are working in Windows
Basic knowledge of a command line
Making the ROM Dump: The Behold 2 has 14 partitions in its flash memory, but only a few of these are useful to modify. You will want to focus on different partitions depending on what you want to do. After you make a ROM dump you will need to package it using the instructions in the following section before you can flash it. Backup your personal data? You may want to backup your data while trying out a different ROM. It is simple to do. Start an ADB shell session and obtain root access. Run the following command to dump the UserData partition: Code:
View 35 Replies
View Related
Aug 3, 2010
I am trying to create a custom dialog in Android. But whatever I tried to do, I am not able to change the width of the dialog. It just remains the same. The following is the view that I am setting as the content for the dialog.
CODE:..............
As you can see, everywhere I am using wrap_content in this code sample. Also I tried the following options
1) Setting a custom style while creating the Dialog like this.
dialog = new Dialog(this,R.style.Theme_Dialog);
And the style as follows
CODE:...........
2) Setting the parameters for the view in the onCreateDialog() like this
CODE:.............
3) I also tried to set the Window parameters like this in the onCreateDialog() method
CODE:.....................
How to set the x and y postions for the Dialog window?
View 2 Replies
View Related
Nov 17, 2010
I'm trying to encapsulate certain layouts that I've made, to help me dry up my android xml ui files. I have the following code:<LinearLayout
android:id="@+id/LinearLayout02"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:orientation="horizontal">
<TextView style="@style/text_view_small"
android:id="@+id/time"></TextView>
<TextView
style="@style/text_view_small"
android:id="@+id/number_of_worlds">
</TextView> </LinearLayout>I want to simply convert it to the following <DoubleTextView></DoubleTextView> Once done I want to be able to use the "widgit" in other xml files.Are there any particular resources or examples that I can look at to help me figure out how to do this?
View 1 Replies
View Related
Jul 13, 2013
I can't create a new APN in my phone. I own a samsung galaxay star GT-S5282.
I tried using giffgaff, but when i save the APN that giffgaff made, it isn't there. And I tried doing it manually too. It's not there when i press save.
I tried using APN backup and restore, and when i open the app, it says "Unfortunately APNs cannot be restored or deleted on this device because android 4.0+ does not allow 3rd party apps to write APN settings."
I already checked the unknown sources in settings>security>unknown sources.
I don't know what to do to create new APN.
View 5 Replies
View Related
May 4, 2012
I put together a ROM with the kitchen and did the major theming through the actual ROM and plan to backup fully when done and then run the backup through the kitchen.
Nexus One using XDA
View 1 Replies
View Related
Jun 8, 2013
I just transferred a bunch of pictures (over 2000) from my ipod to my mytouch 4g slide. I had them all in neat little albums on the ipod and i would like to do the same on my phone. Problem is i cant figure out how, other than putting the files into separate folders on my sd card, which i don't like because i like to have a general folder of all of them together with separate albums for specific things, and sometimes a picture would go into more than one album. Is there an app or a way to do this on my phone, I don't mind if the app creates copies of my pictures as long as the original files are left untouched. And is there a way to organize my pictures by name rather than date? Because when I transferred them it don't keep date it was added but rather the date i copied it, and when organized by name its correct because of the numbers in the file name.
View 1 Replies
View Related
Oct 21, 2011
I have a rather new phone, 2 weeks at most. I have rooted it, and am now trying to get it on odin. We have two bricked phones to work with, Download mode still works with both. I have dumped all partitions in /dev/block.I am working on the OPS file. I found this in the I believe Odin image. I think it's the OPS but I don't know.
here is the lines cleaned up this is the exact order I found it in from the image.
MIBIB
SIM_SECURE
FSBL
OSBL
NVBACKUP
AMSS
EFS2
APPSBL
DSP1
QDSP_Q
CPFOTA
boot
recovery
parameter
system
userdata
cache
View 2 Replies
View Related
Nov 12, 2013
LG G Pad 8.3 running stock Android 4.2.2? How to create a new user. It's like LG forgot to show the "Add User" button under "Settings -> Users". Unfortunately there are no LG G Pad forum on XDA, and LG do not have any customer support. They basically do not pick up the phone. And since it's a new device, there are not much information about it yet.
View 4 Replies
View Related
Aug 13, 2012
Can create a cwm flashable zip for my given .apk file
View 1 Replies
View Related
Jun 16, 2013
i want to create a flash-able zip of PA's HALO for my stock and rooted nexus 4. For all i know i must take the commit files and merge them in my recompiled ROM's folder, compile them and flash (or maybe try to run it in an android emulator first?) Well i'm facing a lot of problem: 1 i can't even get git commit files (yes i have git installed) 2 even if i succeed to get the files and compile my ROM and it all works flawless i don't know how to make HALO as a flashable mod.
View 1 Replies
View Related
Apr 1, 2014
I got a mediatek device. System and Boot.img included in the zip file. But I need a meta-inf map with the updater script. Problem; How the hell do I create one to work..
View 1 Replies
View Related
Nov 17, 2012
I've been looking up everywhere as to how to make apps, but everything i see is too complicated and i don't understand it. What i want to do is create a simple app that has a bunch of pages that you swipe to get to the next page, each page will just be a picture with a single button on it that links to some text. How would i go about doing this? (i have no programming experience)
View 2 Replies
View Related
Apr 23, 2013
I have recently just switched from a iPhone to HTC One, I came across some really cool home screens (such as on minimal android), I didn't know you could customize these, so now i am very eager to try them out myself. However clicking through some of the home screen instructions, there is a section called "ROM", does this mean the device has to rooted first?
View 6 Replies
View Related
Aug 20, 2013
First noticed a problem when I got a warning message that I was running out of storage space on the phones memory. When I checked I found literally thousands of copies of the same photo in the S4PhoneDCIMCamera folder. I delete them all but the phone continues to make a copy approximately one every minute which I have to constantly delete to free up storage. what is making the copies? Galaxy S4 4.2.2 kernel 3.4.0-10811224 basband Ver I9505xxubmga
View 3 Replies
View Related
Mar 17, 2014
Whenever I create a new contact in Android (in both 4.3 and 4.4 GN3) for my outlook.com account via Exchange ActiveSync (e.g. First: John, Last: Smith, email:url...), after sync is complete, the email address entry in outlook.com becomes "John Smith (ur)" in its entirety rather than just url...
View 1 Replies
View Related