Editing the Sense 2.1 quick setting menu - HTC Incredible S

Hi guys,
Would we be able to alter the Quick Setting menu in Sense 2.1 and create an extra setting for Auto Rotate?
I'm sure it would be possible.
If anyone has some idea on how to do it, please reply.
I'm not very experienced with android. I'm just starting to learn.
But I'm sure we could team up to try and create a simple Quick Setting like this.
I already decompiled Rosie.apk and had a look inside, but didn't get anywhere.
Hope to hear from you guys.
Daan

DaanJordaan said:
Hi guys,
Would we be able to alter the Quick Setting menu in Sense 2.1 and create an extra setting for Auto Rotate?
I'm sure it would be possible.
If anyone has some idea on how to do it, please reply.
I'm not very experienced with android. I'm just starting to learn.
But I'm sure we could team up to try and create a simple Quick Setting like this.
I already decompiled Rosie.apk and had a look inside, but didn't get anywhere.
Hope to hear from you guys.
Daan
Click to expand...
Click to collapse
SystemUI.apk.....you'll need to do some xml & smali editing.

This is some weird stuff. It seems it is already been programmed in but not enabled in some way.
Code:
<com.android.systemui.statusbar.preference.QuickSettings
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent"><TextView
android:textAppearance="?android:textAppearanceLarge" android:textColor="#ffffffff"
android:gravity="center_vertical" android:id="@id/title_bar"
android:background="@drawable/status_bar_header_background"
android:paddingLeft="9.0sp" android:layout_width="fill_parent"
android:layout_height="wrap_content" android:scaleType="fitXY"
android:text="@string/status_bar_quick_settings"/><ScrollView android:id="@id/scroll"
android:background="#ffffffff" android:fadingEdge="none" android:layout_width="fill_parent"
android:layout_height="fill_parent"><LinearLayout android:orientation="vertical"
android:layout_width="fill_parent" android:layout_height="wrap_content"><include
[B]android:id="@id/rotation" layout="@layout/status_bar_preference"/><include [/B]
android:id="@id/brightness" layout="@layout/status_bar_preference"/><include
android:id="@id/wifi" layout="@layout/status_bar_preference"/><include
android:id="@id/bluetooth" layout="@layout/status_bar_preference"/><include
android:id="@id/hotspot" layout="@layout/status_bar_preference"/><include
android:id="@id/gps" layout="@layout/status_bar_preference"/><include
android:id="@id/network" layout="@layout/status_bar_preference"/><include
android:id="@id/settings" layout="@layout/status_bar_preference"/></LinearLayout>
</ScrollView></com.android.systemui.statusbar.preference.QuickSettings>
I also changed:
Code:
.class public Lcom/android/systemui/statusbar/preference/QuickSettings;
.super Landroid/widget/LinearLayout;
.source "QuickSettings.java"
# static fields
.field private static final BRIGHTNESS:I = 0x4
.field private static final BT:I = 0x2
.field private static final GPS:I = 0x7
.field private static final HOTSPOT:I = 0x5
.field private static final ITEM_NUMBER:I = 0x8
.field private static final MOBILE_NETWORK:I = 0x3
[B].field private static final ROTATION:I = 0x0[/B]
.field private static final SETTINGS:I = 0x6
.field private static final WIFI:I = 0x1
........ this file goes on
to:
Code:
.class public Lcom/android/systemui/statusbar/preference/QuickSettings;
.super Landroid/widget/LinearLayout;
.source "QuickSettings.java"
# static fields
.field private static final BRIGHTNESS:I = 0x5
.field private static final BT:I = 0x3
.field private static final GPS:I = 0x8
.field private static final HOTSPOT:I = 0x6
.field private static final ITEM_NUMBER:I = 0x9
.field private static final MOBILE_NETWORK:I = 0x4
[B]
.field private static final ROTATION:I = 0x1[/B]
.field private static final SETTINGS:I = 0x7
.field private static final WIFI:I = 0x2
........ this file goes on
and tried:
Code:
.class public Lcom/android/systemui/statusbar/preference/QuickSettings;
.super Landroid/widget/LinearLayout;
.source "QuickSettings.java"
# static fields
.field private static final BRIGHTNESS:I = 0x4
.field private static final BT:I = 0x2
.field private static final GPS:I = 0x7
.field private static final [B]ROTATION[/B]:I = 0x5
.field private static final ITEM_NUMBER:I = 0x8
.field private static final MOBILE_NETWORK:I = 0x3
.field private static final [B]HOTSPOT[/B]:I = 0x0
.field private static final SETTINGS:I = 0x6
.field private static final WIFI:I = 0x1
........ this file goes on
Whatever I do the layout stays the same when I recompile.
Any Ideas?

DaanJordaan said:
This is some weird stuff. It seems it is already been programmed in but not enabled in some way.
Code:
<com.android.systemui.statusbar.preference.QuickSettings
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent"><TextView
android:textAppearance="?android:textAppearanceLarge" android:textColor="#ffffffff"
android:gravity="center_vertical" android:id="@id/title_bar"
android:background="@drawable/status_bar_header_background"
android:paddingLeft="9.0sp" android:layout_width="fill_parent"
android:layout_height="wrap_content" android:scaleType="fitXY"
android:text="@string/status_bar_quick_settings"/><ScrollView android:id="@id/scroll"
android:background="#ffffffff" android:fadingEdge="none" android:layout_width="fill_parent"
android:layout_height="fill_parent"><LinearLayout android:orientation="vertical"
android:layout_width="fill_parent" android:layout_height="wrap_content"><include
[B]android:id="@id/rotation" layout="@layout/status_bar_preference"/><include [/B]
android:id="@id/brightness" layout="@layout/status_bar_preference"/><include
android:id="@id/wifi" layout="@layout/status_bar_preference"/><include
android:id="@id/bluetooth" layout="@layout/status_bar_preference"/><include
android:id="@id/hotspot" layout="@layout/status_bar_preference"/><include
android:id="@id/gps" layout="@layout/status_bar_preference"/><include
android:id="@id/network" layout="@layout/status_bar_preference"/><include
android:id="@id/settings" layout="@layout/status_bar_preference"/></LinearLayout>
</ScrollView></com.android.systemui.statusbar.preference.QuickSettings>
I also changed:
Code:
.class public Lcom/android/systemui/statusbar/preference/QuickSettings;
.super Landroid/widget/LinearLayout;
.source "QuickSettings.java"
# static fields
.field private static final BRIGHTNESS:I = 0x4
.field private static final BT:I = 0x2
.field private static final GPS:I = 0x7
.field private static final HOTSPOT:I = 0x5
.field private static final ITEM_NUMBER:I = 0x8
.field private static final MOBILE_NETWORK:I = 0x3
[B].field private static final ROTATION:I = 0x0[/B]
.field private static final SETTINGS:I = 0x6
.field private static final WIFI:I = 0x1
........ this file goes on
to:
Code:
.class public Lcom/android/systemui/statusbar/preference/QuickSettings;
.super Landroid/widget/LinearLayout;
.source "QuickSettings.java"
# static fields
.field private static final BRIGHTNESS:I = 0x5
.field private static final BT:I = 0x3
.field private static final GPS:I = 0x8
.field private static final HOTSPOT:I = 0x6
.field private static final ITEM_NUMBER:I = 0x9
.field private static final MOBILE_NETWORK:I = 0x4
[B]
.field private static final ROTATION:I = 0x1[/B]
.field private static final SETTINGS:I = 0x7
.field private static final WIFI:I = 0x2
........ this file goes on
and tried:
Code:
.class public Lcom/android/systemui/statusbar/preference/QuickSettings;
.super Landroid/widget/LinearLayout;
.source "QuickSettings.java"
# static fields
.field private static final BRIGHTNESS:I = 0x4
.field private static final BT:I = 0x2
.field private static final GPS:I = 0x7
.field private static final [B]ROTATION[/B]:I = 0x5
.field private static final ITEM_NUMBER:I = 0x8
.field private static final MOBILE_NETWORK:I = 0x3
.field private static final [B]HOTSPOT[/B]:I = 0x0
.field private static final SETTINGS:I = 0x6
.field private static final WIFI:I = 0x1
........ this file goes on
Whatever I do the layout stays the same when I recompile.
Any Ideas?
Click to expand...
Click to collapse
I would grab a SystemUI.apk that already has the mod, the stock apk they used as a base and compare the two. Should give you a better understanding.

TMartin said:
I would grab a SystemUI.apk that already has the mod, the stock apk they used as a base and compare the two. Should give you a better understanding.
Click to expand...
Click to collapse
and what more files we need ?
thanks

Sorry for the deadness... Didn't have time, to busy being on a holiday.
Anyhoo. I decompiled a Stock SytemUI.apk from HTC Sense 2.1.
This also has code in the SystemUI.apk for autorotate in the quick settings.
It seems like it has already been written but somehow it is not activated.
In the smali/com/android/systemui/statusbar/preference/ folder,
There are smali's for Brightness, BT, GPS, Hotspot, Rotation, Setting, Mobile Network, WiFi, Quick Settings and some more.
What do these files do?
Some of the names show up in the Quick Settings menu, but (i.e.) Brightness and Rotation do not.
How do we add these features, any ideas?
Cheers,
Daan

AARGH
Somebody has beat me to it
http://forum.xda-developers.com/showthread.php?t=1126333
Nice work

DaanJordaan said:
AARGH
Somebody has beat me to it
http://forum.xda-developers.com/showthread.php?t=1126333
Nice work
Click to expand...
Click to collapse
Can this be used on inc. s to?
Tried some of them works like a charm

lundberg512 said:
Can this be used on inc. s to?
Tried some of them works like a charm
Click to expand...
Click to collapse
Confirmed working?
Sent from my HTC Incredible S using Tapatalk

andrewxu said:
Confirmed working?
Sent from my HTC Incredible S using Tapatalk
Click to expand...
Click to collapse
Ive tried out a few of them working as they should. But seems hes updating to a new base...dont know if they are gonna work after that.

Will this work on HTC Hero (GSM) with this sense 2.1 rom HEROINE++??

Related

Waking the TyTN in C# ???

I'm wondering if anyone can give any pointers...
I'm trying to wake my TyTN from it's slumber in c#... after a few hours research I found an example in the MSDN that will set my "Beep" program to run at a certain time buy using CeRunAppAtTime. The problem is that although it works ... if the phones sleeping the screen doesn't activate ... (cont below)
Code:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using HowDoI.Examples;
namespace DemoRunAppAtTimeCS
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void menuTest_Click(object sender, EventArgs e)
{
DateTime startTime = DateTime.Now + new TimeSpan(0, 0, 30);
long fileStartTime = startTime.ToFileTime();
long localFileStartTime = 0;
Win32.FileTimeToLocalFileTime(ref fileStartTime, ref localFileStartTime);
SystemTime systemStartTime = new SystemTime();
Win32.FileTimeToSystemTime(ref localFileStartTime, systemStartTime);
Win32.CeRunAppAtTime(@"\Windows\Beep.exe", systemStartTime);
}
}
}
Not a problem ... I know the programs activating so I thought if I mess about with the BKL1: and set it to "on" using DevicePowerState my test app will activate and the screen and speaker will then kick into life.
The problem is that it activates ... the screen comes on and then starts flashing or locks on so you can't turn it off without a reset. The speaker doesn't activate at all..... Can anyone shed anylight?? I'm not bothered about the screen but would love the speaker to activate to I can play a alarm.
Cheers
Phil
Code:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Runtime.InteropServices;
namespace DeviceApplication8
{
public partial class Form1 : Form
{
public Int32 sd;
public Form1()
{
InitializeComponent();
SetDevicePower("BKL1:", POWER_NAME, DevicePowerState.D1);
sd = 0;
}
private void timer1_Tick(object sender, EventArgs e)
{
sd = sd + 1;
textBox1.Text = sd.ToString();
Microsoft.VisualBasic.Interaction.Beep();
}
public enum DevicePowerState : int
{
Unspecified = -1,
D0 = 0, // Full On: full power, full functionality
D1, // Low Power On: fully functional at low power/performance
D2, // Standby: partially powered with automatic wake
D3, // Sleep: partially powered with device initiated wake
D4, // Off: unpowered
}
private const int POWER_NAME = 0x00000001;
[DllImport("coredll")]
private static extern int SetDevicePower(
string pvDevice,
int dwDeviceFlags,
DevicePowerState DeviceState);
}
}
It's late so I can't be arsed trying this, but it looks like you haven't PInvoked the API call properly...
Try this
Code:
[DllImport("coredll.dll", SetLastError = true)]
static extern int SetSystemPowerState(string psState, int StateFlags, int Options);
const int POWER_STATE_ON = 0x00010000;
const int POWER_STATE_OFF = 0x00020000;
const int POWER_STATE_SUSPEND = 0x00200000;
const int POWER_FORCE = 4096;
const int POWER_STATE_RESET = 0x00800000;
#endregion
internal static void PowerOn()
{
SetSystemPowerState(null, POWER_STATE_ON, POWER_FORCE);
}
P.S. Check PInvoke.net and MSDN On SetSystemPowerState for more info.
Ta
Dave
Cheers Dave,
I'll give it a try tomorrow ... got a bottle of plonk in me and busy cooking a fish finger sandwich!!
Cheers
Phil
You're a star Dave ... ... changed my test program as per your advice and it works a treat!!! It wakes up even when locked, screen active, speaker active.
Thanks again for your help Dave ... I spent 10 hours on it yesterday with no joy!! Below's the code so maybe it'll help someone else.
Cheers
Phil
Code:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Runtime.InteropServices;
namespace DeviceApplication8
{
public partial class Form1 : Form
{
public Int32 sd;
public Form1()
{
InitializeComponent();
SetSystemPowerState(null, POWER_STATE_ON, POWER_FORCE);
sd = 0;
}
private void timer1_Tick(object sender, EventArgs e)
{
sd = sd + 1;
textBox1.Text = sd.ToString();
Microsoft.VisualBasic.Interaction.Beep();
}
[DllImport("coredll.dll", SetLastError = true)]
static extern int SetSystemPowerState(string psState, int StateFlags, int Options);
const int POWER_STATE_ON = 0x00010000;
const int POWER_STATE_OFF = 0x00020000;
const int POWER_STATE_SUSPEND = 0x00200000;
const int POWER_FORCE = 4096;
const int POWER_STATE_RESET = 0x00800000;
}
}
If anyone every wonders how ... if you've set an application to run at a certain time, you can cancel the request by setting the run date/time to null
Win32.CeRunAppAtTime(@"\Windows\Beep.exe", null);
Cheers
Phil

[GUIDE][Root thread] Making an Icon Pack

I'd like to make a thread that shows the complete process of making an icon pack for noobs. I call this a "root thread" because I'm not really explaining all the processes, but amassing all the data from other threads and posts and putting it here. Most of what I do write will be the errors that I have come across and how to fix it.
Firstly, I'd like to bring to your attention some useful tools/sites:
Icon Request Tool: Allows users to send you activity names, as well as the icons
Png2xml: Adds all of the png files in the same folder into a drawable.xml file and an icon_pack.xml file in alphabetical order
My dropbox folder, which contains all the stock icons I have downloaded (this may lag as there are thousands of images). You may use this, but I recommend you work with the request tool and go from there as it makes app filters easier.
A xml duplicate line removing site
Setting Up Your Project - Read me first
This is going to be a complete guide on how to set up your project with no errors. I will be using the1dynasty's template from April 2014, but the concept is the same for all projects. If you still have errors after doing all this, DO NOT continue until it is fixed.
1. Import your project - Make sure you are importing android code. It is also recommended that you copy the project into your workplace to stay organized
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
2. Add support library - as you should see, your project has errors. Right click on it, go to android tools, then add support library. Accept the conditions and add it.
3. If required, add extra libraries - as of now, this template requires actionbarsherlock. Firstly, you'll need to download that and do the 2 steps above. When in the android menu, make sure you check "is library" so you can add it. I would also recommend that you change the target name of all projects to the latest android version (android 4.4.2 for now). Then press apply and okay. Now, with the current template, you can add actionbarsherlock. Another way to add libraries is to copy a .jar file into the libs folder, but we don't need to worry about that now. This should git rid of the errors.
4. Rename application package - this is when you change the project to your needs. Again, right click on the project, go to android tools, and then rename application package. Please remember the original package name (your.icons.name.here in my case). Then, change it to the one you want (com.pitchedapps.icons in my case). Accept all the refractor changes and press finish.
5. Refractoring - you can probably see that in the src folder, the source packages still have your.icons.name.here in them. They need to each be done manually. You can right click on them, then go to refractor, then name, or press shift + alt + r. Change the original package name (your.icons.name.here) to your new package name (com.pitchedapps.icons) for each source package with it. The "view" package will remain as "view". If you are feeling masterful, you could also refractor the main project folder (last screenshot in this section). I renamed mine as "Pitched Apps Icons"
6. Rename everything else - for every project, it is inevitable that the previous two methods will not cover everything. This is why you do a full file search for the original package name. You can get to this panel with "ctrl + h". Please note to search in files and not java, and to search in enclosing projects (make sure you are selecting a file within the project so that you aren't searching in a different one). You can also search in a workplace set and manually select the project. You will get results like so. Next, just change the package names to your new one. I recommend putting them in find/replace (ctrl + f) so you don't accidentally mistype it
If you have no errors, then congratulations! You can now move on in making your icon pack
Setting Up Your Project
First, off, you can decide whether you want a plain icon pack, a theme maker or a full on app with interface.
The1dynasty made a really good template which can be found here. (has interface and everything). He also has a complete tutorial on making the template on youtube. If you have questions, post in his google + page. XDA user Blaze has also modified the pack to contain alex's request tool. Thread is here
If, however, you are looking for something simpler, look at this thread for Apex themes here. To make this compatible with other launchers, add the following code to the manifest (right above </manifest>)
HTML:
<intent-filter>
<action android:name="org.adw.launcher.THEMES" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<intent-filter>
<action android:name="org.adw.launcher.icons.ACTION_PICK_ICON" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.anddoes.launcher.THEME" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.teslacoilsw.launcher.THEME" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.fede.launcher.THEME_ICONPACK" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<action android:name="com.tsf.shell.themes" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<intent-filter>
<action android:name="ginlemon.smartlauncher.THEMES" />
<action android:name="ginlemon.smartlauncher.BUBBLESTYLE" />
<action android:name="ginlemon.smartlauncher.BUBBLEICONS" />
<action android:name="ginlemon.smartlauncher.CLOCKS" />
<action android:name="ginlemon.smartlauncher.CLOCKFONTS" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<action android:name="org.adw.launcher.THEMES" />
<action android:name="mobi.bbase.ahome.THEME" />
<action android:name="com.rogro.GDE.THEME.1" />
<action android:name="com.android.dxtop.launcher.THEME" />
<category android:name="com.fede.launcher.THEME_ICONPACK" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<intent-filter>
<action android:name="org.adw.launcher.icons.ACTION_PICK_ICON" />
<action android:name="mobi.bbase.ahome.THEME" />
<action android:name="com.rogro.GDE.THEME.1" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<intent-filter>
<action android:name="cdproductions.crazyicons.TWO" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<intent-filter>
<action android:name="com.daeva112.manager.MAIN" />
<category android:name="com.daeva112.manager.THEME" />
</intent-filter>
<intent-filter>
<action android:name="com.gau.go.launcherex.theme" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
You are now all set!
The Drawables
Obviously speaking, the important parts in an icon pack include the drawables, and these three files: drawable.xml, icon_pack.xml, appfilter.xml
Firstly, looking at the drawables, you will notice multiple folders. The one I'm going to focus on is drawable-xxhdpi, one of the folders you can put your icons in. The icon sizes go as follow
HTML:
mdpi 160dpi 48px * 48px
hdpi 240dpi 72px * 72px
xhdpi 320dpi 96px * 96px
xxhdpi 480dpi 144px * 144px
xxxhdpi 640dpi 192px * 192px
You do not need to make icons for every size, as it will automatically be resized to fit devices. However, if you want hd apps, try to look at at least xxhdpi
Here is a link to my dropbox, where I keep all the stock icons (xxxhdpi). This (and the xml's) take the longest time to do, so it's just my way of giving back and thanking those that helped me. More info on xml's in the section below
Drawable Errors
If you are making all the drawables yourself, just know that there can be no capital letters (or ".") in your file name. If you have that, you will get many errors and eclipse won't generate a r.java file for you.
There is however an easy fix for those using windows. Simply go to the folder containing your images, hold shift, right click, and press run command window here. Then paste this code (ctrl v won't work, right click and press paste)
HTML:
for /f "Tokens=*" %f in ('dir /l/b/a-d') do (rename "%f" "%f")
Xml files
Drawable.xml - this is a list of all the icons in your app. It allows users to manually select the icon they want for a certain app through the launcher. As the launcher will display the icons in the same order as drawable.xml, this is best done alphabetically
Iconpack.xml - also written as icon_pack.xml in some templates - this tells the icon pack which drawables (icons) are currently available
The good thing about the two xml's above is that they are very easy to make. Simply put this java application in the folder with all the icons and run it, and it will make the files. Do this every time you make new icons! Again, make sure that your template uses iconpack.xml and not icon_pack.xml (like the apex template). To solve this, either rename your xml each time or search the project for icon_pack and change it to iconpack
Appfilter.xml - this one contains all the activities, and is what allows the app to automatically associated each app with its corresponding icons. Unfortunately, this must be done manually (or with the help of a tool). As mentioned in the beginning, here is a tool I made (source thanks to Alex R3conn3r to help you with this. It'll make an appfilter for you, so use it as reference.
As you can see, both appfilter and drawable are located in the assets and xml folders, and iconpack is in the values folder. Simply put, replace all your old xml's with your new ones in all three folders so that you support all the launchers. (To add more detail, xml is for most standard launchers, ie apex, nova etc), and assets is for go. Furthermore, if you use an icon request tool that filters out prethemed icons, it needs to look at an appfilter in assets)
Getting help from your users
***Easiest way is to implement alex's icon request tool. ***
This is mainly for the appfilter file. Finding the activities can be a very treacherous task, especially when there are many activities for each app. Two good manual sources are
http://activities.droidicon.com/
http://activities.tundem.com/
But you can also rely on apps like QuickShortcutMaker
An even more automatic alternative is Icon Helper, which I will write a guide on once I figure out how to use it
There is now a template that has an icon helper built into it (thread is here). Credits go to the1dynasty for his template, alex for his icon request tool, tung for the idea (he made icon helper), and blaze for doing the impossible and putting it all together
How to search in a whole project
Select the appropriate project (select any file in that project) and press ctrl + H. Then, do the following (underlined in blue)
In the example, I searched for "your.icons.name.here", which is the original package name for the1dynasty's pack. What I would recommend is that you search for the original package name and rename it to your pack, then search for ".com" to find the emails, and also whatever link or specific keyword you need to change
Editing strings
Most of the strings will be in the values folder (strings, strings_app, strings_dev, etc). It is just up to you to look through all of them. Some may also be hidden in java, so be sure to look there too! (try searching)
Info for the1dynasty's template
* FAQ - Read me first if you are new
Before doing anything, you must download actionbarsherlock (may be removed in future), and add support libraries to the project by right clicking and going to android tools --> add support library
To change the activity name (default is your.icons.name.here), you must:
Rename the application package - right click the project, go to android tools, and press rename package name (ie to com.asdfasdfvful.icons).
Rename the src package folders - (shortcut is alt + shift + R) - change all the "your.icons.name.here" to match your package name (so your.icons.name.here.util becomes com.asdfasdfvful.icons.util)
Do the ctrl + h thing as mentioned above (scroll up to blue title)
Drawables CANNOT start with numbers or contain special characters. Add the a letter (ie "a" to retain the order) and change the characters so eclipse does not explode
Drawable and app filter need to be in xml to support launchers like Nova, and assets for the request tool and the launchers like go. Icon_pack.xml should be in the values folder. Furthermore, if your icons are not theming, check the app drawer first. Often times, if you manually set an icon for an app, it will not change automatically after further updates (to change that, readd the app to your screen from the app drawer)
* Where is...? And a bunch of other small facts
How to I remove the title from the action bar?
Go to src, the Activity package folder, and then MainActivity.java. Or you can search for "setDisplayShowTitleEnabled". Change that to false. As for setDisplayShowHomeEnabled, that is for the icon.​
How do I change the actionbar color?
Go to res/xhdpi/ab_transparent.9.png and modify that to your liking. You may also want to change the white50 in res/values/colors.xml​
How do I change between listview and gridview?
Go to res/layout/gridview_behind (or search for "android:numColumns". Change the number (1 for list, 2, 3, whatever for gridview)​
* Adding and removing cards
Go into src/fragments/mainfragment.java, and you will see two parts, both of which for phones and tablets
You will see something like
HTML:
listOfStuff.add(new AdapterItem(getResources().getString (R.string.title_app),
getResources().getString (R.string.desc_app), 0));
listOfStuff.add(new AdapterItem(getResources().getString (R.string.title_request),
getResources().getString (R.string.desc_request), 1));
listOfStuff.add(new AdapterItem(getResources().getString (R.string.title_production),
getResources().getString (R.string.desc_production), 2));
listOfStuff.add(new AdapterItem(getResources().getString (R.string.title_apply),
getResources().getString (R.string.desc_apply), 3));
listOfStuff.add(new AdapterItem(getResources().getString (R.string.title_walls),
getResources().getString (R.string.desc_walls), 4));
listOfStuff.add(new AdapterItem(getResources().getString (R.string.title_xda),
getResources().getString (R.string.desc_xda), 5));
This is what tells the app what to show for each card. To change the name, icon, or description of any card, simply refer it to a different string or change the original string. To add a new card, just copy one of them, and paste it. Change the two R.string and the number before the "));"
The next part will look something like this
HTML:
switch (position) {
case 0:
Intent pitchedplay = new Intent(Intent.ACTION_VIEW).setData(Uri.parse
("https://play.google.com/store/apps/developer?id=Pitched+Apps"));
startActivity(pitchedplay);
break;
case 1:
Intent intent = new Intent(Intent.ACTION_MAIN);
intent.setComponent(new ComponentName("com.pitchedapps.icons.raging.shadows","com.pitchedapps.icons.raging.shadows.RequestActivity"));
startActivity(intent);
break;
case 2:
Intent production = new Intent(Intent.ACTION_VIEW).setData(Uri.parse
("http://goo.gl/OoIxqC"));
startActivity(production);
break;
case 3:
Intent launcher = new Intent(getSherlockActivity(), LauncherMain.class);
startActivity(launcher);
break;
case 4
Intent wall = new Intent(getSherlockActivity(), Wallpaper.class);
startActivity(wall);
break;
case 5:
Intent xda = new Intent(Intent.ACTION_VIEW).setData(Uri.parse
("http://forum.xda-developers.com/showthread.php?t=2669405"));
startActivity(xda);
break;
This gives each card its own function. You can reorder them as you like, but make sure the case number matches the first code. To add another function for a card, copy a case, change the number, the intent name, the start activity name (same as intent name) and the function.
* Adding removing buttons in the overflow menu
Go to activity/mainactivity.java or search for
HTML:
public boolean onOptionsItemSelected(MenuItem item)
Remove, rearrange, or add buttons as you please. Keep in mind that adding requires that you add the appropriate id's, so it's not for absolute beginners.
* Removing the oss pop up
Search for the following
HTML:
This code checks if MY OSS is installed on first run.
To see which files contain the code. Then remove everything up to the "}" before "@ Override" as shown:
HTML:
/******************************************************************************
** This code checks if MY OSS is installed on first run. If it is installed **
** you get a dialog that says you're awesome and the user hits OK to remove **
** that dialog. If it is NOT installed, the user is prompted to install it. **
** You can remove this section if you're not checking for apps on first run **
******************************************************************************/
public void onStart() {
super.onStart();
boolean installed = isAppInstalled("app.the1dynasty.oss");
// Checking if installed and if its the first run
if (installed) {
boolean firstrunOSS = getSharedPreferences("PREFERENCE", MODE_PRIVATE)
.getBoolean("firstrunOSS", true);
if (firstrunOSS){
/*
* Installed dialog
* Check res/values/strings.xml to change text to whatever you want the Alert to say
*/
AlertDialog.Builder alert = new AlertDialog.Builder(this);
alert.setTitle(getResources().getString (R.string.alert_start_title));
alert.setMessage(getResources().getString (R.string.alert_start_desc));
alert.setIcon(R.drawable.alert_pass);
alert.setPositiveButton(getResources().getString (R.string.ok), null).show ();
// Save the state so this dialog doesn't run again
getSharedPreferences("PREFERENCE", MODE_PRIVATE)
.edit()
.putBoolean("firstrunOSS", false) /* You can change this to another name */
.commit();
}
}
/*
* Not Installed dialog
* Check res/values/strings.xml to change text to whatever you want the Alert to say
*/
else {
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setTitle(getResources().getString (R.string.error_start_title));
builder.setMessage(getResources().getString (R.string.error_start_desc));
builder.setIcon(R.drawable.alert_fail);
builder.setNeutralButton(getResources().getString (R.string.later), new OnClickListener(){
[user=439709]@override[/user]
public void onClick(DialogInterface arg0, int arg1) {
}
});
// Change line 88 with the URL to YOUR app
builder.setPositiveButton(getResources().getString (R.string.get), new OnClickListener(){
[user=439709]@override[/user]
public void onClick(DialogInterface arg0, int arg1) {
Intent share = new Intent(Intent.ACTION_VIEW).setData(Uri.parse
("market://details?id=app.the1dynasty.oss"));
startActivity(share);
}
});
builder.show();
}
}
* Adding wallpapers
Go to drawable_nodpi and add your wallpaper in the same format (wall_# & wall_#_small with dimensions 215x179)
Go to res/values/array.xml and add more lines for wallpapers (or just copy paste this) Note that you can add more than you actually have
HTML:
<?xml version="1.0" encoding="utf-8" ?>
<resources>
<string-array name="wallpaperlist">
<item>wall_1</item>
<item>wall_2</item>
<item>wall_3</item>
<item>wall_4</item>
<item>wall_5</item>
<item>wall_6</item>
<item>wall_7</item>
<item>wall_8</item>
<item>wall_9</item>
</string-array>
<!-- Provide a list of wallpaers -->
<string-array name="wallpapers" translatable="true">
<item>wall_1</item>
<item>wall_2</item>
<item>wall_3</item>
<item>wall_4</item>
<item>wall_5</item>
<item>wall_6</item>
<item>wall_7</item>
<item>wall_8</item>
<item>wall_9</item>
</string-array>
<string-array name="extra_wallpapers">
</string-array>
<!-- This wallpaper will be used when a user applies the theme -->
<string name="default_wallpaper">wall_1</string>
<string-array name="dock_pack" translatable="false">
<item>dock_0002</item>
<item>dock_0003</item>
<item>dock_0004</item>
</string-array>
</resources>
You can also search the project for "wall_", and you will come across some other files. Some of them allow you to select the default wallpaper, so just change the # to the one you want.
Check out my icon pack!
Thank you for this helpful and very informative guide.:good:
cool, thank for doing this
Sent from my SCH-I535 using Tapatalk 2
Thanks ...
This post was really useful for beghinners like me
Nice
Sent from my GT-P3100 using XDA Premium 4 mobile app
hi thanks for sharing this link to me and for create this guide, howevere i ve one problem, i ve add 12 tabs and have modified main fragment.xml and main adapter.xml, i ve add the string for tabs into strings_app.xml but show up only 7 tabs ..... i foget to modify other files ?
fraom said:
hi thanks for sharing this link to me and for create this guide, howevere i ve one problem, i ve add 12 tabs and have modified main fragment.xml and main adapter.xml, i ve add the string for tabs into strings_app.xml but show up only 7 tabs ..... i foget to modify other files ?
Click to expand...
Click to collapse
Is this for the cards or the tabs in the menu? Of its cards, Make sure you edited both parts in main fragments. One for the function and one for actually showing the card. If it's menu, I believe there is another thing you need in an XML. Copy paste one the id of one of the tabs and search for it. Then you'll get the xml
Sent from my One S using Tapatalk
asdfasdfvful said:
Is this for the cards or the tabs in the menu? Of its cards, Make sure you edited both parts in main fragments. One for the function and one for actually showing the card. If it's menu, I believe there is another thing you need in an XML. Copy paste one the id of one of the tabs and search for it. Then you'll get the xml
Sent from my One S using Tapatalk
Click to expand...
Click to collapse
is for the card
this is my code for MainFragment.java
-----------------------------------------------
package your.icons.name.here.fragment;
import java.util.ArrayList;
import java.util.List;
import view.ScrollGridView;
import your.icons.name.here.R;
import your.icons.name.here.activity.AboutThemeActivity;
import your.icons.name.here.activity.AllIcons;
import your.icons.name.here.activity.ApplyLauncherMain;
import your.icons.name.here.activity.MainActivity;
import your.icons.name.here.activity.RequestActivity;
import your.icons.name.here.activity.Wallpaper;
import your.icons.name.here.adapter.MainAdapter;
import your.icons.name.here.adapter.MainAdapter.AdapterItem;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.AdapterView;
import android.widget.AdapterView.OnItemClickListener;
import com.actionbarsherlock.app.SherlockFragment;
/**
** Some lines may be off a few numbers
** Just be sure you're in the general area
**/
public class MainFragment extends SherlockFragment{
ScrollGridView gridView;
final List<AdapterItem> listOfStuff = new ArrayList<AdapterItem>();
public static final int APPLY = 0;
public static final int WALLPAPER = 1;
public static final int ALLICONS = 2;
public static final int SCREEN = 3;
public static final int REQUEST = 4;
public static final int PLAY = 5;
public static final int DEVG = 6;
public static final int GCOMMUNITY = 7;
public static final int TWITTER = 8;
public static final int FACEBOOK = 9;
public static final int WEB = 10;
public static final int CONTACT = 11;
// This is the background layout that gets inflated behind the list view
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState){
return inflater.inflate(R.layout.gridview_behind, null);
}
// Starts when the MainFragment is launched
@override
public void onActivityCreated(Bundle savedInstanceState){
super.onActivityCreated(savedInstanceState);
/*
* This part does two things
* First - It counts the number of items and displays them
* Second - It displays the text in the "" which is a brief description of that item
* Removing any of these will remove that item but be sure to edit ALL the cases below or your list
* won't line up properly
*/
/**
** NOTE: in order to have different views on tablet vs phones, I added an if/else statement to this
** section. Be sure to remove BOTH parts to remove it from phones and tablets. Failure to remove both
** parts will result in the app functioning differently on phones and tablets.
**/
/*
* Sets the Title and description text for each GridView item
* Check res/values/strings.xml to change text to whatever you want each GridView to say
*/
boolean tabletSize = getResources().getBoolean(R.bool.isTablet);
if (tabletSize) {
gridView = (ScrollGridView)getView().findViewById(R.id.grid);
listOfStuff.add(new AdapterItem(getResources().getString (R.string.title_apply),
getResources().getString (R.string.desc_apply), 0));
listOfStuff.add(new AdapterItem(getResources().getString (R.string.title_walls),
getResources().getString (R.string.desc_walls), 1));
listOfStuff.add(new AdapterItem(getResources().getString (R.string.title_icons),
getResources().getString (R.string.desc_icons), 2));
listOfStuff.remove(new AdapterItem(getResources().getString (R.string.title_screen),
getResources().getString (R.string.desc_screen), 3));
listOfStuff.add(new AdapterItem(getResources().getString (R.string.title_request),
getResources().getString (R.string.desc_request), 4));
listOfStuff.add(new AdapterItem(getResources().getString (R.string.title_play),
getResources().getString (R.string.desc_play), 5));
listOfStuff.remove(new AdapterItem(getResources().getString (R.string.title_dev),
getResources().getString (R.string.desc_dev), 6));
listOfStuff.remove(new AdapterItem(getResources().getString (R.string.title_community),
getResources().getString (R.string.desc_community), 7));
listOfStuff.remove(new AdapterItem(getResources().getString (R.string.title_twitter),
getResources().getString (R.string.desc_twitter), 8));
listOfStuff.remove(new AdapterItem(getResources().getString (R.string.title_fb),
getResources().getString (R.string.desc_fb), 9));
listOfStuff.remove(new AdapterItem(getResources().getString (R.string.title_web),
getResources().getString (R.string.desc_web), 10));
listOfStuff.remove(new AdapterItem(getResources().getString (R.string.title_contact),
getResources().getString (R.string.desc_contact), 11));
} else {
gridView = (ScrollGridView)getView().findViewById(R.id.grid);
listOfStuff.add(new AdapterItem(getResources().getString (R.string.title_apply),
getResources().getString (R.string.desc_apply), 0));
listOfStuff.add(new AdapterItem(getResources().getString (R.string.title_walls),
getResources().getString (R.string.desc_walls), 1));
listOfStuff.add(new AdapterItem(getResources().getString (R.string.title_icons),
getResources().getString (R.string.desc_icons), 2));
listOfStuff.add(new AdapterItem(getResources().getString (R.string.title_screen),
getResources().getString (R.string.desc_screen), 3));
listOfStuff.add(new AdapterItem(getResources().getString (R.string.title_request),
getResources().getString (R.string.desc_request), 4));
listOfStuff.add(new AdapterItem(getResources().getString (R.string.title_play),
getResources().getString (R.string.desc_play), 5));
listOfStuff.add(new AdapterItem(getResources().getString (R.string.title_dev),
getResources().getString (R.string.desc_dev), 6));
listOfStuff.remove(new AdapterItem(getResources().getString (R.string.title_community),
getResources().getString (R.string.desc_community), 7));
listOfStuff.remove(new AdapterItem(getResources().getString (R.string.title_twitter),
getResources().getString (R.string.desc_twitter), 8));
listOfStuff.remove(new AdapterItem(getResources().getString (R.string.title_fb),
getResources().getString (R.string.desc_fb), 9));
listOfStuff.remove(new AdapterItem(getResources().getString (R.string.title_web),
getResources().getString (R.string.desc_web), 10));
listOfStuff.remove(new AdapterItem(getResources().getString (R.string.title_contact),
getResources().getString (R.string.desc_contact), 11));
}
/**
** NOTE: in order to have different views on tablet vs phones, I added an if/else statement to this
** section. Be sure to remove both parts to remove it from phones and tablets. Failure to remove both
** parts will result in the app functioning differently on phones and tablets.
**/
MainAdapter adapter = new MainAdapter(getActivity(), listOfStuff);
gridView.setAdapter(adapter);
gridView.setExpanded(true);
gridView.setOnItemClickListener(new OnItemClickListener() {
public void onItemClick(AdapterView<?> parent, View v, int position, long id) {
@SuppressWarnings("unused")
MainFragment gridContentT = null;
boolean tabletSize = getResources().getBoolean(R.bool.isTablet);
if (tabletSize) { // For TABLETS
switch (position) {
case APPLY:
Intent launcher = new Intent(getSherlockActivity(), ApplyLauncherMain.class);
startActivity(launcher);
break;
case WALLPAPER:
Intent wall = new Intent(getSherlockActivity(), Wallpaper.class);
startActivity(wall);
break;
case ALLICONS:
Intent allIcons = new Intent(getSherlockActivity(), AllIcons.class);
startActivity(allIcons);
break;
case REQUEST:
Intent request = new Intent(getSherlockActivity(), RequestActivity.class);
startActivity(request);
break;
case SCREEN:
Intent aboutTheme = new Intent(getSherlockActivity(), AboutThemeActivity.class);
startActivity(aboutTheme);
break;
case DEVG:
Intent dev = new Intent(Intent.ACTION_VIEW).setData(Uri.parse
("https://plus.google.com/+DevFraom"));
startActivity(dev);
break;
case GCOMMUNITY:
Intent community = new Intent(Intent.ACTION_VIEW).setData(Uri.parse
("https://plus.google.com/communities/114921114033302801523"));
startActivity(community);
break;
case TWITTER:
Intent twitter = new Intent(Intent.ACTION_VIEW).setData(Uri.parse
("https://twitter.com/Fraom"));
startActivity(twitter);
break;
case FACEBOOK:
Intent fb = new Intent(Intent.ACTION_VIEW).setData(Uri.parse
("https://www.facebook.com/devFraom"));
startActivity(fb);
break;
case WEB:
Intent web = new Intent(Intent.ACTION_VIEW).setData(Uri.parse
("http://zeptorius.altervista.org"));
startActivity(web);
break;
case CONTACT:
Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND);
emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL, new String[]
{getResources().getString(R.string.email_address)});
emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT,
getResources().getText(R.string.email_subject));
emailIntent.setType("plain/text");
startActivity(Intent.createChooser(emailIntent, "Contact Developer"));
break;
}
} else { // For PHONES
switch (position) {
case APPLY:
Intent launcher = new Intent(getSherlockActivity(), ApplyLauncherMain.class);
startActivity(launcher);
break;
case WALLPAPER:
Intent wall = new Intent(getSherlockActivity(), Wallpaper.class);
startActivity(wall);
break;
case ALLICONS:
Intent allIcons = new Intent(getSherlockActivity(), AllIcons.class);
startActivity(allIcons);
break;
case REQUEST:
Intent request = new Intent(getSherlockActivity(), RequestActivity.class);
startActivity(request);
break;
case SCREEN:
Intent aboutTheme = new Intent(getSherlockActivity(), AboutThemeActivity.class);
startActivity(aboutTheme);
break;
case DEVG:
Intent dev = new Intent(Intent.ACTION_VIEW).setData(Uri.parse
("https://plus.google.com/+DevFraom"));
startActivity(dev);
break;
case GCOMMUNITY:
Intent community = new Intent(Intent.ACTION_VIEW).setData(Uri.parse
("https://plus.google.com/communities/114921114033302801523"));
startActivity(community);
break;
case TWITTER:
Intent twitter = new Intent(Intent.ACTION_VIEW).setData(Uri.parse
("https://twitter.com/Fraom"));
startActivity(twitter);
break;
case FACEBOOK:
Intent fb = new Intent(Intent.ACTION_VIEW).setData(Uri.parse
("https://www.facebook.com/devFraom"));
startActivity(fb);
break;
case WEB:
Intent web = new Intent(Intent.ACTION_VIEW).setData(Uri.parse
("http://zeptorius.altervista.org"));
startActivity(web);
break;
case CONTACT:
Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND);
emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL, new String[]
{getResources().getString(R.string.email_address)});
emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT,
getResources().getText(R.string.email_subject));
emailIntent.setType("plain/text");
startActivity(Intent.createChooser(emailIntent, "Contact Developer"));
break;
}
}
}
});
}
}
----------------------------
and this is the MainAdapter.java
package your.icons.name.here.adapter;
import android.content.Context;
import android.graphics.Typeface;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.ImageView;
import android.widget.TextView;
import java.util.List;
import your.icons.name.here.R;
public class MainAdapter extends BaseAdapter{
public static final int APPLY = 0;
public static final int WALLPAPER = 1;
public static final int ALLICONS = 2;
public static final int SCREEN = 3;
public static final int REQUEST = 4;
public static final int PLAY = 5;
public static final int DEVG = 6;
public static final int GCOMMUNITY = 7;
public static final int TWITTER = 8;
public static final int FACEBOOK = 9;
public static final int WEB = 10;
public static final int CONTACT = 11;
private Context context;
private List<AdapterItem> gridItem;
public MainAdapter(Context context, List<AdapterItem> gridItem) {
this.gridItem = gridItem;
this.context = context;
}
public View getView(int position, View v, ViewGroup parent) {
ViewHolder holder;
AdapterItem entry = gridItem.get(position);
if (v == null) {
LayoutInflater inflater = (LayoutInflater) context
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
v = inflater.inflate(R.layout.gridview_layout, null);
holder = new ViewHolder();
holder.title = (TextView) v.findViewById(R.id.title);
holder.text = (TextView) v.findViewById(R.id.description);
holder.icon_Image = (ImageView) v.findViewById(R.id.list_image);
v.setTag(holder);
}
else {
holder = (ViewHolder) v.getTag();
}
holder.title.setText(entry.getTitle());
/*
* Sets the font type for the title and description of each item
* This is if you want to have a bolder font for title or something
* Make sure the font file is in the projects Asset folder
* Default for this template is Roboto-Thin
* themefont.ttf is the font the theme grabs also
*/
Typeface tfTitle = Typeface.createFromAsset(context.getAssets(),"themefont.ttf");
Typeface tfDescription = Typeface.createFromAsset(context.getAssets(),"themefont.ttf");
holder.title.setTypeface(tfTitle);
holder.text.setTypeface(tfDescription);
/*
* Sets the description and title text color as well as icon shown
* You can reference any color in the colors.xml and even add some
* You can also individually set the color for each GridView by
* referencing a different color on each case statement (kinda like the different icon references)
* You can reference any drawable
*/
switch(entry.getID()){
case APPLY:
holder.title.setTextColor(context.getResources().getColor(R.color.list_title_color));
holder.text.setTextColor(context.getResources().getColor(R.color.list_desc_color));
holder.icon_Image.setImageResource(R.drawable.icon_launcher);
break;
case WALLPAPER:
holder.title.setTextColor(context.getResources().getColor(R.color.list_title_color));
holder.text.setTextColor(context.getResources().getColor(R.color.list_desc_color));
holder.icon_Image.setImageResource(R.drawable.icon_wall);
break;
case ALLICONS:
holder.title.setTextColor(context.getResources().getColor(R.color.list_title_color));
holder.text.setTextColor(context.getResources().getColor(R.color.list_desc_color));
holder.icon_Image.setImageResource(R.drawable.icon_oss);
break;
case SCREEN:
holder.title.setTextColor(context.getResources().getColor(R.color.list_title_color));
holder.text.setTextColor(context.getResources().getColor(R.color.list_desc_color));
holder.icon_Image.setImageResource(R.drawable.icon_info);
break;
case REQUEST:
holder.title.setTextColor(context.getResources().getColor(R.color.list_title_color));
holder.text.setTextColor(context.getResources().getColor(R.color.list_desc_color));
holder.icon_Image.setImageResource(R.drawable.icon_request);
break;
case PLAY:
holder.title.setTextColor(context.getResources().getColor(R.color.list_title_color));
holder.text.setTextColor(context.getResources().getColor(R.color.list_desc_color));
holder.icon_Image.setImageResource(R.drawable.icon_oss);
break;
case DEVG:
holder.title.setTextColor(context.getResources().getColor(R.color.list_title_color));
holder.text.setTextColor(context.getResources().getColor(R.color.list_desc_color));
holder.icon_Image.setImageResource(R.drawable.icon_gplus);
break;
case GCOMMUNITY:
holder.title.setTextColor(context.getResources().getColor(R.color.list_title_color));
holder.text.setTextColor(context.getResources().getColor(R.color.list_desc_color));
holder.icon_Image.setImageResource(R.drawable.icon_community);
break;
case TWITTER:
holder.title.setTextColor(context.getResources().getColor(R.color.list_title_color));
holder.text.setTextColor(context.getResources().getColor(R.color.list_desc_color));
holder.icon_Image.setImageResource(R.drawable.icon_twitter);
break;
case FACEBOOK:
holder.title.setTextColor(context.getResources().getColor(R.color.list_title_color));
holder.text.setTextColor(context.getResources().getColor(R.color.list_desc_color));
holder.icon_Image.setImageResource(R.drawable.icon_oss);
break;
case WEB:
holder.title.setTextColor(context.getResources().getColor(R.color.list_title_color));
holder.text.setTextColor(context.getResources().getColor(R.color.list_desc_color));
holder.icon_Image.setImageResource(R.drawable.icon_oss);
break;
case CONTACT:
holder.title.setTextColor(context.getResources().getColor(R.color.list_title_color));
holder.text.setTextColor(context.getResources().getColor(R.color.list_desc_color));
holder.icon_Image.setImageResource(R.drawable.icon_email);
break;
}
holder.text.setText(entry.getDescription());
holder.title.setText(entry.getTitle());
return v;
}
@override
public int getCount() {
return gridItem.size();
}
@override
public Object getItem(int position) {
return gridItem.get(position);
}
@override
public long getItemId(int position) {
return position;
}
public static class ViewHolder {
public TextView title;
public TextView text;
public ImageView icon_Image;
}
public static class AdapterItem{
String Title;
String Description;
int ID;
public AdapterItem(String Title, String Description, int ID) {
this.Title = Title;
this.Description = Description;
this.ID = ID;
}
public String getTitle() {
return Title;
}
public String getDescription() {
return Description;
}
public int getID() {
return ID;
}
}
}
-----------------
the cards show about the number 6 , others ( community, twitter, Facebook, web e contact ) doesn't appears!
i ve attached the file, can you see it ?
fraom said:
is for the card
this is my code for MainFragment.java
HTML:
-----------------------------------------------
package your.icons.name.here.fragment;
import java.util.ArrayList;
import java.util.List;
import view.ScrollGridView;
import your.icons.name.here.R;
import your.icons.name.here.activity.AboutThemeActivity;
import your.icons.name.here.activity.AllIcons;
import your.icons.name.here.activity.ApplyLauncherMain;
import your.icons.name.here.activity.MainActivity;
import your.icons.name.here.activity.RequestActivity;
import your.icons.name.here.activity.Wallpaper;
import your.icons.name.here.adapter.MainAdapter;
import your.icons.name.here.adapter.MainAdapter.AdapterItem;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.AdapterView;
import android.widget.AdapterView.OnItemClickListener;
import com.actionbarsherlock.app.SherlockFragment;
/**
** Some lines may be off a few numbers
** Just be sure you're in the general area
**/
public class MainFragment extends SherlockFragment{
ScrollGridView gridView;
final List<AdapterItem> listOfStuff = new ArrayList<AdapterItem>();
public static final int APPLY = 0;
public static final int WALLPAPER = 1;
public static final int ALLICONS = 2;
public static final int SCREEN = 3;
public static final int REQUEST = 4;
public static final int PLAY = 5;
public static final int DEVG = 6;
public static final int GCOMMUNITY = 7;
public static final int TWITTER = 8;
public static final int FACEBOOK = 9;
public static final int WEB = 10;
public static final int CONTACT = 11;
// This is the background layout that gets inflated behind the list view
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState){
return inflater.inflate(R.layout.gridview_behind, null);
}
// Starts when the MainFragment is launched
[user=439709]@override[/user]
public void onActivityCreated(Bundle savedInstanceState){
super.onActivityCreated(savedInstanceState);
/*
* This part does two things
* First - It counts the number of items and displays them
* Second - It displays the text in the "" which is a brief description of that item
* Removing any of these will remove that item but be sure to edit ALL the cases below or your list
* won't line up properly
*/
/**
** NOTE: in order to have different views on tablet vs phones, I added an if/else statement to this
** section. Be sure to remove BOTH parts to remove it from phones and tablets. Failure to remove both
** parts will result in the app functioning differently on phones and tablets.
**/
/*
* Sets the Title and description text for each GridView item
* Check res/values/strings.xml to change text to whatever you want each GridView to say
*/
boolean tabletSize = getResources().getBoolean(R.bool.isTablet);
if (tabletSize) {
gridView = (ScrollGridView)getView().findViewById(R.id.grid);
listOfStuff.add(new AdapterItem(getResources().getString (R.string.title_apply),
getResources().getString (R.string.desc_apply), 0));
listOfStuff.add(new AdapterItem(getResources().getString (R.string.title_walls),
getResources().getString (R.string.desc_walls), 1));
listOfStuff.add(new AdapterItem(getResources().getString (R.string.title_icons),
getResources().getString (R.string.desc_icons), 2));
listOfStuff.remove(new AdapterItem(getResources().getString (R.string.title_screen),
getResources().getString (R.string.desc_screen), 3));
listOfStuff.add(new AdapterItem(getResources().getString (R.string.title_request),
getResources().getString (R.string.desc_request), 4));
listOfStuff.add(new AdapterItem(getResources().getString (R.string.title_play),
getResources().getString (R.string.desc_play), 5));
listOfStuff.remove(new AdapterItem(getResources().getString (R.string.title_dev),
getResources().getString (R.string.desc_dev), 6));
listOfStuff.remove(new AdapterItem(getResources().getString (R.string.title_community),
getResources().getString (R.string.desc_community), 7));
listOfStuff.remove(new AdapterItem(getResources().getString (R.string.title_twitter),
getResources().getString (R.string.desc_twitter), 8));
listOfStuff.remove(new AdapterItem(getResources().getString (R.string.title_fb),
getResources().getString (R.string.desc_fb), 9));
listOfStuff.remove(new AdapterItem(getResources().getString (R.string.title_web),
getResources().getString (R.string.desc_web), 10));
listOfStuff.remove(new AdapterItem(getResources().getString (R.string.title_contact),
getResources().getString (R.string.desc_contact), 11));
} else {
gridView = (ScrollGridView)getView().findViewById(R.id.grid);
listOfStuff.add(new AdapterItem(getResources().getString (R.string.title_apply),
getResources().getString (R.string.desc_apply), 0));
listOfStuff.add(new AdapterItem(getResources().getString (R.string.title_walls),
getResources().getString (R.string.desc_walls), 1));
listOfStuff.add(new AdapterItem(getResources().getString (R.string.title_icons),
getResources().getString (R.string.desc_icons), 2));
listOfStuff.add(new AdapterItem(getResources().getString (R.string.title_screen),
getResources().getString (R.string.desc_screen), 3));
listOfStuff.add(new AdapterItem(getResources().getString (R.string.title_request),
getResources().getString (R.string.desc_request), 4));
listOfStuff.add(new AdapterItem(getResources().getString (R.string.title_play),
getResources().getString (R.string.desc_play), 5));
listOfStuff.add(new AdapterItem(getResources().getString (R.string.title_dev),
getResources().getString (R.string.desc_dev), 6));
listOfStuff.remove(new AdapterItem(getResources().getString (R.string.title_community),
getResources().getString (R.string.desc_community), 7));
listOfStuff.remove(new AdapterItem(getResources().getString (R.string.title_twitter),
getResources().getString (R.string.desc_twitter), 8));
listOfStuff.remove(new AdapterItem(getResources().getString (R.string.title_fb),
getResources().getString (R.string.desc_fb), 9));
listOfStuff.remove(new AdapterItem(getResources().getString (R.string.title_web),
getResources().getString (R.string.desc_web), 10));
listOfStuff.remove(new AdapterItem(getResources().getString (R.string.title_contact),
getResources().getString (R.string.desc_contact), 11));
}
/**
** NOTE: in order to have different views on tablet vs phones, I added an if/else statement to this
** section. Be sure to remove both parts to remove it from phones and tablets. Failure to remove both
** parts will result in the app functioning differently on phones and tablets.
**/
MainAdapter adapter = new MainAdapter(getActivity(), listOfStuff);
gridView.setAdapter(adapter);
gridView.setExpanded(true);
gridView.setOnItemClickListener(new OnItemClickListener() {
public void onItemClick(AdapterView<?> parent, View v, int position, long id) {
[user=5448622]@Suppress[/user]Warnings("unused")
MainFragment gridContentT = null;
boolean tabletSize = getResources().getBoolean(R.bool.isTablet);
if (tabletSize) { // For TABLETS
switch (position) {
case APPLY:
Intent launcher = new Intent(getSherlockActivity(), ApplyLauncherMain.class);
startActivity(launcher);
break;
case WALLPAPER:
Intent wall = new Intent(getSherlockActivity(), Wallpaper.class);
startActivity(wall);
break;
case ALLICONS:
Intent allIcons = new Intent(getSherlockActivity(), AllIcons.class);
startActivity(allIcons);
break;
case REQUEST:
Intent request = new Intent(getSherlockActivity(), RequestActivity.class);
startActivity(request);
break;
case SCREEN:
Intent aboutTheme = new Intent(getSherlockActivity(), AboutThemeActivity.class);
startActivity(aboutTheme);
break;
case DEVG:
Intent dev = new Intent(Intent.ACTION_VIEW).setData(Uri.parse
("https://plus.google.com/+DevFraom"));
startActivity(dev);
break;
case GCOMMUNITY:
Intent community = new Intent(Intent.ACTION_VIEW).setData(Uri.parse
("https://plus.google.com/communities/114921114033302801523"));
startActivity(community);
break;
case TWITTER:
Intent twitter = new Intent(Intent.ACTION_VIEW).setData(Uri.parse
("https://twitter.com/Fraom"));
startActivity(twitter);
break;
case FACEBOOK:
Intent fb = new Intent(Intent.ACTION_VIEW).setData(Uri.parse
("https://www.facebook.com/devFraom"));
startActivity(fb);
break;
case WEB:
Intent web = new Intent(Intent.ACTION_VIEW).setData(Uri.parse
("http://zeptorius.altervista.org"));
startActivity(web);
break;
case CONTACT:
Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND);
emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL, new String[]
{getResources().getString(R.string.email_address)});
emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT,
getResources().getText(R.string.email_subject));
emailIntent.setType("plain/text");
startActivity(Intent.createChooser(emailIntent, "Contact Developer"));
break;
}
} else { // For PHONES
switch (position) {
case APPLY:
Intent launcher = new Intent(getSherlockActivity(), ApplyLauncherMain.class);
startActivity(launcher);
break;
case WALLPAPER:
Intent wall = new Intent(getSherlockActivity(), Wallpaper.class);
startActivity(wall);
break;
case ALLICONS:
Intent allIcons = new Intent(getSherlockActivity(), AllIcons.class);
startActivity(allIcons);
break;
case REQUEST:
Intent request = new Intent(getSherlockActivity(), RequestActivity.class);
startActivity(request);
break;
case SCREEN:
Intent aboutTheme = new Intent(getSherlockActivity(), AboutThemeActivity.class);
startActivity(aboutTheme);
break;
case DEVG:
Intent dev = new Intent(Intent.ACTION_VIEW).setData(Uri.parse
("https://plus.google.com/+DevFraom"));
startActivity(dev);
break;
case GCOMMUNITY:
Intent community = new Intent(Intent.ACTION_VIEW).setData(Uri.parse
("https://plus.google.com/communities/114921114033302801523"));
startActivity(community);
break;
case TWITTER:
Intent twitter = new Intent(Intent.ACTION_VIEW).setData(Uri.parse
("https://twitter.com/Fraom"));
startActivity(twitter);
break;
case FACEBOOK:
Intent fb = new Intent(Intent.ACTION_VIEW).setData(Uri.parse
("https://www.facebook.com/devFraom"));
startActivity(fb);
break;
case WEB:
Intent web = new Intent(Intent.ACTION_VIEW).setData(Uri.parse
("http://zeptorius.altervista.org"));
startActivity(web);
break;
case CONTACT:
Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND);
emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL, new String[]
{getResources().getString(R.string.email_address)});
emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT,
getResources().getText(R.string.email_subject));
emailIntent.setType("plain/text");
startActivity(Intent.createChooser(emailIntent, "Contact Developer"));
break;
}
}
}
});
}
}
----------------------------
and this is the MainAdapter.java
package your.icons.name.here.adapter;
import android.content.Context;
import android.graphics.Typeface;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.ImageView;
import android.widget.TextView;
import java.util.List;
import your.icons.name.here.R;
public class MainAdapter extends BaseAdapter{
public static final int APPLY = 0;
public static final int WALLPAPER = 1;
public static final int ALLICONS = 2;
public static final int SCREEN = 3;
public static final int REQUEST = 4;
public static final int PLAY = 5;
public static final int DEVG = 6;
public static final int GCOMMUNITY = 7;
public static final int TWITTER = 8;
public static final int FACEBOOK = 9;
public static final int WEB = 10;
public static final int CONTACT = 11;
private Context context;
private List<AdapterItem> gridItem;
public MainAdapter(Context context, List<AdapterItem> gridItem) {
this.gridItem = gridItem;
this.context = context;
}
public View getView(int position, View v, ViewGroup parent) {
ViewHolder holder;
AdapterItem entry = gridItem.get(position);
if (v == null) {
LayoutInflater inflater = (LayoutInflater) context
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
v = inflater.inflate(R.layout.gridview_layout, null);
holder = new ViewHolder();
holder.title = (TextView) v.findViewById(R.id.title);
holder.text = (TextView) v.findViewById(R.id.description);
holder.icon_Image = (ImageView) v.findViewById(R.id.list_image);
v.setTag(holder);
}
else {
holder = (ViewHolder) v.getTag();
}
holder.title.setText(entry.getTitle());
/*
* Sets the font type for the title and description of each item
* This is if you want to have a bolder font for title or something
* Make sure the font file is in the projects Asset folder
* Default for this template is Roboto-Thin
* themefont.ttf is the font the theme grabs also
*/
Typeface tfTitle = Typeface.createFromAsset(context.getAssets(),"themefont.ttf");
Typeface tfDescription = Typeface.createFromAsset(context.getAssets(),"themefont.ttf");
holder.title.setTypeface(tfTitle);
holder.text.setTypeface(tfDescription);
/*
* Sets the description and title text color as well as icon shown
* You can reference any color in the colors.xml and even add some
* You can also individually set the color for each GridView by
* referencing a different color on each case statement (kinda like the different icon references)
* You can reference any drawable
*/
switch(entry.getID()){
case APPLY:
holder.title.setTextColor(context.getResources().getColor(R.color.list_title_color));
holder.text.setTextColor(context.getResources().getColor(R.color.list_desc_color));
holder.icon_Image.setImageResource(R.drawable.icon_launcher);
break;
case WALLPAPER:
holder.title.setTextColor(context.getResources().getColor(R.color.list_title_color));
holder.text.setTextColor(context.getResources().getColor(R.color.list_desc_color));
holder.icon_Image.setImageResource(R.drawable.icon_wall);
break;
case ALLICONS:
holder.title.setTextColor(context.getResources().getColor(R.color.list_title_color));
holder.text.setTextColor(context.getResources().getColor(R.color.list_desc_color));
holder.icon_Image.setImageResource(R.drawable.icon_oss);
break;
case SCREEN:
holder.title.setTextColor(context.getResources().getColor(R.color.list_title_color));
holder.text.setTextColor(context.getResources().getColor(R.color.list_desc_color));
holder.icon_Image.setImageResource(R.drawable.icon_info);
break;
case REQUEST:
holder.title.setTextColor(context.getResources().getColor(R.color.list_title_color));
holder.text.setTextColor(context.getResources().getColor(R.color.list_desc_color));
holder.icon_Image.setImageResource(R.drawable.icon_request);
break;
case PLAY:
holder.title.setTextColor(context.getResources().getColor(R.color.list_title_color));
holder.text.setTextColor(context.getResources().getColor(R.color.list_desc_color));
holder.icon_Image.setImageResource(R.drawable.icon_oss);
break;
case DEVG:
holder.title.setTextColor(context.getResources().getColor(R.color.list_title_color));
holder.text.setTextColor(context.getResources().getColor(R.color.list_desc_color));
holder.icon_Image.setImageResource(R.drawable.icon_gplus);
break;
case GCOMMUNITY:
holder.title.setTextColor(context.getResources().getColor(R.color.list_title_color));
holder.text.setTextColor(context.getResources().getColor(R.color.list_desc_color));
holder.icon_Image.setImageResource(R.drawable.icon_community);
break;
case TWITTER:
holder.title.setTextColor(context.getResources().getColor(R.color.list_title_color));
holder.text.setTextColor(context.getResources().getColor(R.color.list_desc_color));
holder.icon_Image.setImageResource(R.drawable.icon_twitter);
break;
case FACEBOOK:
holder.title.setTextColor(context.getResources().getColor(R.color.list_title_color));
holder.text.setTextColor(context.getResources().getColor(R.color.list_desc_color));
holder.icon_Image.setImageResource(R.drawable.icon_oss);
break;
case WEB:
holder.title.setTextColor(context.getResources().getColor(R.color.list_title_color));
holder.text.setTextColor(context.getResources().getColor(R.color.list_desc_color));
holder.icon_Image.setImageResource(R.drawable.icon_oss);
break;
case CONTACT:
holder.title.setTextColor(context.getResources().getColor(R.color.list_title_color));
holder.text.setTextColor(context.getResources().getColor(R.color.list_desc_color));
holder.icon_Image.setImageResource(R.drawable.icon_email);
break;
}
holder.text.setText(entry.getDescription());
holder.title.setText(entry.getTitle());
return v;
}
[user=439709]@override[/user]
public int getCount() {
return gridItem.size();
}
[user=439709]@override[/user]
public Object getItem(int position) {
return gridItem.get(position);
}
[user=439709]@override[/user]
public long getItemId(int position) {
return position;
}
public static class ViewHolder {
public TextView title;
public TextView text;
public ImageView icon_Image;
}
public static class AdapterItem{
String Title;
String Description;
int ID;
public AdapterItem(String Title, String Description, int ID) {
this.Title = Title;
this.Description = Description;
this.ID = ID;
}
public String getTitle() {
return Title;
}
public String getDescription() {
return Description;
}
public int getID() {
return ID;
}
}
}
-----------------
the cards show about the number 6 , others ( community, twitter, Facebook, web e contact ) doesn't appears!
i ve attached the file, can you see it ?
Click to expand...
Click to collapse
hm.... everything looks right and I don't believe you need to modify another file. If you tap each of the cards,do they function as they should? Maybe search for "gcommunity" or one of the original card names to see if there's another file. I'll look back into it once I go on my own eclipse
asdfasdfvful said:
hm.... everything looks right and I don't believe you need to modify another file. If you tap each of the cards,do they function as they should? Maybe search for "gcommunity" or one of the original card names to see if there's another file. I'll look back into it once I go on my own eclipse
Click to expand...
Click to collapse
yes all works, howevere now i test with other name.....
another question, when i tap on launcher card ( for apply the theme ) the list of launcher is small, how i can set it at full screen ?
@fraom
Checked again and I still don't see an error. Maybe try changing all the case names into numbers. So in the begging when you had
PHP:
public static final int APPLY = 0;
public static final int WALLPAPER = 1;
public static final int ALLICONS = 2;
public static final int SCREEN = 3;
public static final int REQUEST = 4;
public static final int PLAY = 5;
public static final int DEVG = 6;
public static final int GCOMMUNITY = 7;
public static final int TWITTER = 8;
public static final int FACEBOOK = 9;
public static final int WEB = 10;
public static final int CONTACT = 11;
Use the corresponding numbers instead of the names. Do that for both java files
Also press ctrl+shift+O to add any missing imports
asdfasdfvful said:
@fraom
Checked again and I still don't see an error. Maybe try changing all the case names into numbers. So in the begging when you had
PHP:
public static final int APPLY = 0;
public static final int WALLPAPER = 1;
public static final int ALLICONS = 2;
public static final int SCREEN = 3;
public static final int REQUEST = 4;
public static final int PLAY = 5;
public static final int DEVG = 6;
public static final int GCOMMUNITY = 7;
public static final int TWITTER = 8;
public static final int FACEBOOK = 9;
public static final int WEB = 10;
public static final int CONTACT = 11;
Use the corresponding numbers instead of the names. Do that for both java files
Also press ctrl+shift+O to add any missing imports
Click to expand...
Click to collapse
I solved it! I rewrote all the code with different names and now it works....
although I have not figured out what the problem was ......
fraom said:
I solved it! I rewrote all the code with different names and now it works....
although I have not figured out what the problem was ......
Click to expand...
Click to collapse
Lol éclipse is weird
Sent from my One S using Tapatalk
Andorid Studio?
Cool guide, thanks!
Can you make the same steps for Andorid Studio too?
paolorotolo said:
Cool guide, thanks!
Can you make the same steps for Andorid Studio too?
Click to expand...
Click to collapse
Sorry, but I don't have Android studio nor do I know how to use it. I'm not even sure if this project is compatible but if it is most steps should be the same
Sent from my One S using Tapatalk
asdfasdfvful said:
Sorry, but I don't have Android studio nor do I know how to use it. I'm not even sure if this project is compatible but if it is most steps should be the same
Click to expand...
Click to collapse
OK, thanks anyway. I tried all day to run it with Android Studio. I imported Sherlock but I still have a lot of errors, even with base (untouched) template.
paolorotolo said:
OK, thanks anyway. I tried all day to run it with Android Studio. I imported Sherlock but I still have a lot of errors, even with base (untouched) template.
Click to expand...
Click to collapse
I presume they do thing differently. Download eclipse and try it ☺
Sent from my One S using Tapatalk
When the Request Icons button is pressed
The app lists all the apps that are in the device
But except for gmail, google settings (as far as my phone is concerned)
Also when i want to submit the app details in a mail. Gmail is not listed in the corresponding pop up to select the app to start the mail process.
Any suggestions?
Am using the default picker tool in 1dynasty's app
akhi24nick said:
When the Request Icons button is pressed
The app lists all the apps that are in the device
But except for gmail, google settings (as far as my phone is concerned)
Also when i want to submit the app details in a mail. Gmail is not listed in the corresponding pop up to select the app to start the mail process.
Any suggestions?
Am using the default picker tool in 1dynasty's app
Click to expand...
Click to collapse
Hm. Try opening Gmail first and then filing the request. As for the google apps not showing, I'm not sure about that. Try the one I made with Alex's code (link in op) and see if that one works. For the one in the1dynasty's template, you'll have to ask Pkmmte as he made the code
Sent from my One S using Tapatalk
akhi24nick said:
When the Request Icons button is pressed
The app lists all the apps that are in the device
But except for gmail, google settings (as far as my phone is concerned)
Also when i want to submit the app details in a mail. Gmail is not listed in the corresponding pop up to select the app to start the mail process.
Any suggestions?
Am using the default picker tool in 1dynasty's app
Click to expand...
Click to collapse
Are you running an aosp or cm rom? If so, perhaps there's an issue with your gapps?

[Q] Mass change the object access Android Studio

I've been using Android Studio for a while, and it's one of the (if not the) most powerful IDE's I've used.
There is one thing I can't find though.
If you have a list like this:
Code:
private String username = null;
private String userAvatarURL = null;
private String bio = null;
private String birhtdate = null;
private String gender = null;
private String location = null;
private String twitter = null;
private String externalURL = null;
private String urlIFLprofile = null;
private String urlIFLwallpapers = null;
private List<Integer> wallpaperIdArray = null;
How do you change private to public without changing them one by one?
Thanks for the tip!
Tim
tim687 said:
I've been using Android Studio for a while, and it's one of the (if not the) most powerful IDE's I've used.
There is one thing I can't find though.
If you have a list like this:
Code:
private String username = null;
private String userAvatarURL = null;
private String bio = null;
private String birhtdate = null;
private String gender = null;
private String location = null;
private String twitter = null;
private String externalURL = null;
private String urlIFLprofile = null;
private String urlIFLwallpapers = null;
private List<Integer> wallpaperIdArray = null;
How do you change private to public without changing them one by one?
Thanks for the tip!
Tim
Click to expand...
Click to collapse
Code:
public String username = null;
public String userAvatarURL = null;
public String bio = null;
public String birhtdate = null;
public String gender = null;
public String location = null;
public String twitter = null;
public String externalURL = null;
public String urlIFLprofile = null;
public String urlIFLwallpapers = null;
public List<Integer> wallpaperIdArray = null;
Use Edit -> Find... -> Replace
Rember shortcut "Replace" .
Bye
cristaccio85 said:
Code:
public String username = null;
public String userAvatarURL = null;
public String bio = null;
public String birhtdate = null;
public String gender = null;
public String location = null;
public String twitter = null;
public String externalURL = null;
public String urlIFLprofile = null;
public String urlIFLwallpapers = null;
public List<Integer> wallpaperIdArray = null;
Use Edit -> Find... -> Replace
Rember shortcut "Replace" .
Bye
Click to expand...
Click to collapse
I knew that one, but what if your Object names contain public or private?
such as
Code:
private boolean visibleToPublic = false;

[TUTORIAL][ANDROID] How to add touch events to RecyclerView

At first, it probably seems a better choice to use RecyclerViews instead of the ordinary ListViews but one of the issues that people come across is that there are no touch events implemented in RecyclerViews.
While developing Chatto (re-writing from scratch), I came up with a very logical solution for this. If you are you currently using RecyclerViews, you should be familiar with ViewHolders.
Firstly, in your model layout file for the RecyclerView (.xml file), add an id for the layout that you are using. In my layout file, I'm using a RelativeLayout.
Code:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="50dp"
android:paddingBottom="5dp"
android:id="@+id/chatroomListRelativeRow">
Now let's take a look at a snippet from a custom ViewHolder class that I wrote for Chatto.
Code:
public class RoomViewHolder extends RecyclerView.ViewHolder{
private TextView mLblRoomName;
private TextView mLblRoomCounter;
private ImageView mImgRoomType;
private RelativeLayout chatroomListRelativeRow;
public String roomName;
Notice the line private RelativeLayout chatroomListRelativeRow. As you can see, I've created a RelativeLayout object.
Inside the constructor of the ViewHolder class, I've linked the object back to the RelativeLayout in the .xml file.
Code:
chatroomListRelativeRow = RelativeLayout)v.findViewById(R.id.chatroomListRelativeRow);
Now we can use this object to add the onClickListeners and other touch events.
Code:
chatroomListRelativeRow.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
//Log.d("RVH",mLblRoomName.getText().toString());
//FragMessagesList fragMessagesList = new FragMessagesList();
roomName = mLblRoomName.getText().toString();
//go to messages
}
});
In the above code, I've attached a OnClickListener to the RelativeLayout. This means when the user clicks on any part of the layout (RecyclerView row), it will perform the specified action.
Now you can try this out for yourself.
As an addition, I've also attached a OnTouchListener to the layout. In this listener, I'm simply changing the colors when user touches the row and when the row is not touched. Now let's see how its done.
In order to obtain the original color of the layout, I've created a Drawable and called the
Code:
.getBackground()
method on the layout.
Code:
final Drawable origColor = chatroomListRelativeRow.getBackground();
Now we can use this to set the color back to the original color/background when the user is not touching on the row.
Code:
chatroomListRelativeRow.setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
if(event.getAction()==MotionEvent.ACTION_DOWN){
chatroomListRelativeRow.setBackgroundColor(Color.parseColor("#212121"));
}
else{
chatroomListRelativeRow.setBackground(origColor);
}
return false;
}
});
That's all there is to it!

Handler android

Dear People,
I´m working on a app to control my robot with bluetooth.
So i made a thread to handle the bluetooth device, and a handler to read the information in the Gui thread.
(See code below)
The problem is that i´m not able to print the information to the textview in the handler.
When i print somthing to the textview in de onCreate function, everythings works fine, but when i print something to the textview in the handler, nothing happens.
There are also no errors or something like that.
I know that the handler function is called, because the receive messages are printed well in the log.d.
I hope that there is anyone who can help me.
thanks in advance.
Tom
public class InteractionActivity extends Activity {
private ConnectThread mConnectThread;
private interface MessageConstants
{
public static final int MESSAGE_READ = 0;
public static final int MESSAGE_WRITE = 1;
public static final int MESSAGE_TOAST = 2;
}
@override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_interaction);
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);
BluetoothDevice device = getIntent().getExtras().getParcelable("btdevice");
((TextView) findViewById(R.id.textView5)).setText("Hallo"); // works fine, print correct to the screen
mConnectThread = new ConnectThread(device);
mConnectThread.start();
}
private final Handler mHandler = new Handler() {
public void handleMessage(Message msg) {
byte[] writeBuf = (byte[]) msg.obj;
int begin = (int)msg.arg1;
int end = (int)msg.arg2;
String writeMessage = new String(writeBuf);
writeMessage = writeMessage.substring(begin, end);
((TextView) findViewById(R.id.textView5)).setText("Hallo1111"); //Nothing happens
Log.d(TAG, writeMessage); //is printed fine in the log
}
};
private class ConnectThread extends Thread {
etc ............

Categories

Resources