Dialer fix...
So when making the dialer transparent, one of the values in the color folder was made transparent...causing it to not show up. This was done to remove a black box behind the numbers when you dial. Subsequently, everything that calls on that color twcolor 002 i think it was, becomes transparent...which just so happens to be our issue here.
First, you will need to decompile the dialer using apktool/apkmanager. The menu affected is called dialer_searchdialog_contents.xml and is found in the layout folder. Open it and you will see on several lines that it is calling on tw_color002(value is 00000000, the first two 00s tell us that it is transparent), which you can find in the values/color folder. You need to change this value to a value that is black...I used tw_color017 as it's value = ff000000(the ff tells us it's opaque). So just change all 02 to 17, save, recompile, then...go to the build folder, grab only that xml, and place it in the dialer apk using 7zip. Push/flash...enjoy.
Issue fixed.
So when making the dialer transparent, one of the values in the color folder was made transparent...causing it to not show up. This was done to remove a black box behind the numbers when you dial. Subsequently, everything that calls on that color twcolor 002 i think it was, becomes transparent...which just so happens to be our issue here.
First, you will need to decompile the dialer using apktool/apkmanager. The menu affected is called dialer_searchdialog_contents.xml and is found in the layout folder. Open it and you will see on several lines that it is calling on tw_color002(value is 00000000, the first two 00s tell us that it is transparent), which you can find in the values/color folder. You need to change this value to a value that is black...I used tw_color017 as it's value = ff000000(the ff tells us it's opaque). So just change all 02 to 17, save, recompile, then...go to the build folder, grab only that xml, and place it in the dialer apk using 7zip. Push/flash...enjoy.
Issue fixed.