2013年8月31日星期六

Android SD Card Resource Manager API? ?

Will Android SD card resource manager API do ? Still need to manually write ah ? ?
I want to write an SD card reader txt documents , but also can not manually enter the path ah ? ? Xiangnong a resource manager to achieve.
------ Solution ---------------------------------------- ----
android with sdcard related classes on an Environment, which did not seem to realize this API function method you say it .
------ Solution ---------------------------------------- ----
multi-level traversal to do a similar thing folder
listview loaded with record path .
Click for path then passes through the intent of what value then open
------ reference ----------------- ----------------------
Does anyone know ah ? ? Had to write himself a ah ? ?
------ reference --------------------------------------- < br>
ah, write himself a bar ~ ~

android PopupWindow how to drag

A similar effect was done right, I can now write to drag , but the second drag began to move from the original location .
following code to achieve this is PopupWindow press the button , move the movement can be achieved throughout the PopupWindow , initialized to Gravity.BOTTOM position for the first time since the window at this location , so the move is correct, but the second started , click the button to start moving the moment , it will suddenly jump to the starting position , then move
	private void createPopup()
{
LayoutInflater flater = (LayoutInflater)getSystemService(LAYOUT_INFLATER_SERVICE);
View view = flater.inflate(R.layout.pop, null);

view.findViewById(R.id.button2).setOnTouchListener(new OnTouchListener()
{
public boolean onTouch(View v, MotionEvent event)
{
int action = event.getAction();
switch(action)
{
case MotionEvent.ACTION_DOWN:
lastX = (int)event.getRawX();
lastY = (int)event.getRawY();
break;

case MotionEvent.ACTION_MOVE:
int dx = (int)event.getRawX() - lastX;
int dy = (int)event.getRawY() - lastY;
popup.update(dx, dy, -1, -1);

break;

}
return true;
}
});

popup = new PopupWindow(view, LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
popup.setFocusable(false);
popup.setTouchable(true);
popup.setOutsideTouchable(true);
//popup.showAsDropDown(findViewById(R.id.ding), 100, 100);
popup.showAtLocation(findViewById(R.id.button1), Gravity.BOTTOM, 0, 0);

//
popup.update();
}

------ Solution ------------------------------------- -------
try to put int dx int dy become a member variable. It is a local variable .

------ Solution ------------------------------------ --------
debug this problem if it should be solved. Most appear in popup.update this method , you re in ontouchend method in setting its location setposition.
------ reference --------------------------------------- < br> the two values ​​should be something to do with it, it will get moved when a new value ah
case MotionEvent.ACTION_MOVE:
int dx = (int) event.getRawX () - lastX;
int dy = (int) event.getRawY () - lastY;
popup.update (dx, -dy , -1, -1);

This place should be negative , or move up and down just reversed, do not know why
------ reference -------------------- -------------------
PopupWindow drag a demo do , zzjhhb@163.com thanks
------ reference --- ------------------------------------
own reality. .

[Share] androidpn when you push the problems

If Baidu or Google Search. " android push "keyword, a considerable part of the article are said androidpn. You can also see some people say to use it, someone said Tucao instability, loss of function, maintenance workload. androidpn This paper attempts to make a pooled analysis of past lives.

Visit androidpn official site, we can understand the following basic information:

androidpn full name is Android Push Notification.
This is the Korean source on an open source project on sourceforge.net, the document is in Korean.
recent version of the update time is 2010-11-05, which is about two years ago.
visits from China, accounting for 81% of total visits. Please click on this link to look at the current statistics.

the above basic information indicates that this is not a very mature project (seemingly personal maintenance), but it does have a lot of Chinese people are interested.

I believe there are many students know why people on androidpn so interested, this is situation ah: Because Google official GCM (previously called C2DM) can not be used in the country. In addition, domestic and before that a third party is not available handy push service. So, we had to do: their practice. Start from scratch? Too much work, too uneconomical. So from the beginning of open source. And also happens to be open source project, specifically for the Android Push the afterlife, it androidpn it. mqtt There is no integrated so well you can quickly run up.

but androidpn build up, the situation? CSDN programmer on a beautiful article androidpn Push Probe is hot. Of this article raised a few questions:

androidpn server receives the message, how do you know which user you want to send?
Once the server is restarted, the client does not seem to auto-reconnect, you need to interrupt the user's own back-Service and then restart the application.
androidpn server does not save the message. It is a message that will be sent out there, even if the client did not online, it does not re-issued.

authors like that, not just settle for the environment to build up, and thinking to do for your business needs. Resolve the issues raised under her:

The first question is relatively simple, go to customize the user system, the business part of the user system needs to correspond with androidpn.

The second problem is the small detail, androidpn client does not have to do these details.

The third problem is the most important. androidpn behind Openfire , is XMPP IM server, the message content is not going to fall, that is only stored in memory about offline messages. If you want to produce with the need to consider the transformation here.

follows from androidpn technical foundation to a depth analysis.

androidpn is an integrated solution, which is based on the XMPP open source components. Based on that server Openfire , client-based Smack, XMPP open source components which two are the most common of the two. androidpn using the Spring framework to do a Web tier, the XMPP IM components integrated together to achieve Android Push functionality. Therefore, androidpn availability from the following aspects:

its dependence on XMPP IM protocols and communication mechanisms, whether it is suitable for Android Push scene.
whether it is Android Push needs to do the necessary customization.

first aspect, XMPP protocols and open source components. XMPP is a mature IM (instant messaging) protocol, based on XML text ways, flexible and powerful. Most foreign countries are based on XMPP chat services, such as: Gtalk, Facebook Chat, iMessage, etc. Because of this, so some of the open source XMPP component availability is also good, the domestic many emerging chat tool is fully based on the XMPP beginning to develop open-source components, such as rice talk.

However, the author has realized a similar experience mobile chat App speaking, XMPP open source components have their problems, needs large-scale transformation:

XMPP protocol complex redundancy, the client cost flow, costs of electricity;
open source XMPP server (androidpn chose Openfire) limited capacity of a single point, the cluster program complex, immature.

For these reasons, and taking into account a wide range of technically more uncontrollable transformation, where the team so I just started using XMPP open source program, and later completely cut to the realization of their own technical solutions on the.

The second aspect, Android Push demand scenarios, in addition to the message can be pushed to the client in a timely manner, what other basic needs it? Here cite two examples: first, to ensure that the message can reach. Whether there is a mechanism to ensure that messages are not lost, for whatever reason. Second, to specify a group of people push messages. anroidpn based XMPP IM component is not considered these, you need to do a lot of custom transformation.

To sum up, the use of androidpn can simply do: push the message to the client . However, to make it suitable for developer needs, and run in a production environment, you may need to do a lot of custom development work. From the author communicate with multiple developers get feedback, up and running in a production environment where a lot of problems.

mentioned above, there is nothing available before the domestic third-party messaging handy push service, so we have to consider their own structures. Recent domestic third-party news push service opened, it is the aurora push, ordinary developers can always sign up, download the SDK to do integration, the whole process can be completed three minutes.
------ Solution ---------------------------------------- ----
aurora it? Seems pretty good, first try to say
------ Solution -------------------------------- ------------
to the force ago I felt very good androidpn use, always receive push messages
------ Solution ------------------------------- -------------
tangle for this thing for a long time, has been found in the android good push solution
------ Solution ----- ---------------------------------------
Haha seems androidpn really torture a lot of people
------ Solution ------------------------------------ --------
seems androidpn instability is known ah
------ Solution ------------------- -------------------------
expect better push service ah. . .
------ Solution ---------------------------------------- ----
XMPP protocol that is a lot of problems ah
------ Solution ----------------------- ---------------------
go to the official website to see, used to know the effect ah
------ Solution ---- ----------------------------------------
true, then if androidpn to solve more problems
------ Solution --------------------------------- -----------
androidpn not used, but listen to a lot of people say that the real problem with a lot of
------ Solution --------- -----------------------------------
to try first, steady push on the line as long as
------ Solution ------------------------------------------- -
who push up the source distribution for your reference ah?
------ Solution ---------------------------------------- ----
good to say, with androidpn then need to improve on too much
------ Solution ----------------------------- ---------------
aurora push, tested, even if the message is not too accurate, sometimes delayed several minutes, the person who posted promote aurora have come CSDN, now we do your own push
------ Solution ------------------------------------ --------
easy to use on-line, first try
------ Solution --------------------------------- -----------
open source programs are actually still not perfect, there are some problems also normal
------ Solution ----------- ---------------------------------
really not easy to use, androidpn long time did not update it
------ Solution ------------------------------------------ -
can be grouped push right
------ Solution ----------------------------- ---------------
Baidu cloud push. . Can also be used

As for stability. . So-so to
------ Solution -------------------------------------- ------
3 minutes of how it worked out
------ reference - --------------------------------------
recently used the aurora, the results were pretty good, Baidu cloud push just on the line soon, still in the exploratory phase, testing to know.
------ reference --------------------------------------- < br> androidpn do not do anything to meet the requirements for a long time, can only hope that an independent third party push the
------ reference ----------------- ----------------------
in contrast to the XMPP and androidpn
------ reference ---------- -----------------------------
now that several have developed to what extent?
------ reference --------------------------------------- < br> new to push this, it seems quite reasonable
------ reference --------------------------- ------------
good, but now there are many people using XMPP, laborious
------ reference ----------- ----------------------------
still want pondering openfire

Android

edittext display problems I get edittext value displayed on the screen after it edittext input from me for the first time will be displayed second cover ; I want it to always show that I entered once it is displayed once ; and then enter it in the first display shown on the basis of how I get down ? ? ?
------ Solution ---------------------------------------- ----
Oh, that every time you want to display the value of the previously saved, and then append each new EditText obtained from
------ Solution ---- ----------------------------------------
if (mEditText.getText () == null) {
mEditText.setText ("You have to enter the string");
} else {
mEditText.setText (mEditText.getText () + "you once again enter the string");
}

------ reference ------------------------------------ ---

qq you can add it? I'm trying to figure it
------ reference ----------------------------------- ----
seeking god pointing pointing ah
------ reference ---------------------------- -----------
define an invisible EditView, a display EditView, each time the display shows the input EditView content. The content of each entry into String, fight together, hidden. Re-enter the time that the hidden text content and entered text, once again assigned to the hidden EditView, EditView displayed simultaneously displayed. Should be very simple.
------ reference --------------------------------------- < br> can detail what novice ah
------ reference -------- -------------------------------
define a table or displayed before the data file is stored, when the secondary display will be taken out of the data before and stitching together the current data show

2013年8月30日星期五

Android AChartEngine ( referred ACE) draw a histogram how to changethe column width ?

AChartEngine ( referred ACE) draw a histogram how to change the column width ? I painted pillars very fine ; following code , how to adjust ? ?
private void setChartSettings(XYMultipleSeriesRenderer renderer) {
         renderer.setChartTitle( "电视商城" );
         renderer.setXTitle( "x values" );
         renderer.setYTitle( "y values" );
         renderer.setBackgroundColor(Color.BLACK);
renderer.setApplyBackgroundColor(true);
renderer.setDisplayChartValues(true);
renderer.setXLabelsAngle(-15); // 设置 X 轴标签倾斜角度 (clockwise degree)
renderer.setXLabels(0); //设置 X 轴不显示数字(改用我们手动添加的文字标签)
for (int i = 0; i < titles.length ; i++){
        renderer.addTextLabel(i, titles[i]);
      }
         renderer.setMargins( new int [] {20, 30, 15, 0}); // 图形 4 边距
         renderer.setXAxisMin(0);
         renderer.setXAxisMax(8);
         renderer.setBarSpacing(0.1);
         renderer.setYAxisMin(1000);
         renderer.setYAxisMax(21000);
}




how to adjust the width of the histogram ? ? ?

In addition, there is a problem . . . How the X-axis is set to display the time ? ?


seeking advice ! ! !
------ Solution ---------------------------------------- ----
width I remember seemingly powerless , drawn is a view, you can like the picture as scaling. Ordinate change the time , I had to change, indeed forgotten ! On the word , huh, huh !
------ reference --------------------------------------- < br> how to change ah
------ reference ----------------------------------- ----
Well, I solved the problem , renderer.setBarSpacing (3.9); histogram allows thinner , whereas renderer.setBarSpacing (-3.9) allows histogram thicker. values ​​can set their own , but the positive and negative signs to right, and must have a decimal
------ reference ----------------------------- ----------
landlord I have met you this question ; I also set renderer.setBarSpacing (-3.9) is negative , but did not reach the desired effect . You can also set up that place yet ?

Android Live chat encryption of information between user and serverprocesses

I now understand that when the user sends a login account and password . The server then verify the correct return a cookie, and a key, the user wants to save the cookie to use key encryption , use the time taken out from the database decrypted ( My purpose is to prevent others from stealing a cookie that model user action ) , there is a request to plus the cookie, the server receives the authentication cookie after aging , can accept the request
But using Ethereal tool found username, password directly exposed , and if the account password when sending the first encrypted and then decrypted server , then to the public key, if someone decompile , do not you still be able to get the public key

Thank you, please try to detail, now a bit confusing
------ Solution -------------------------- ------------------
confusing code or use the public key is written so ndk Curry, do not know right .
------ Solution ---------------------------------------- ----
I just know , if you want to use security publickey hair symmetrical key, between the server and the client using symmetric key, each landing had changed
------ reference ---- -----------------------------------
the wrong place ? Or not people understand
------ reference ------------------------------------ ---
how written so library
------ reference ----------------------------- ----------
https can

Android camera camera horizontally flipped

Ask a question
If the preview image when correctly photograph into a [thumbnail image flipped horizontally flipped] also, how is it?
ps: the code is qualcomm platform 2.3, rear camera, no problem, before the camera image flipped horizontally.
I read this article
http://blog.csdn.net/daisyhd/article/details/6000962 feel there should be a place to set jpeg encoding from right to left or from left to right, but did not find a specific location. Watched for several days did not get,
always see a oriention setting, but regardless of the setting into 090,180,270, there will not be flipped horizontally happen ah
------ Solution --- -----------------------------------------
was writing camera hal layer? Should be driven not supported or did not write
------ Solution ------------------------------ --------------
jpeg coding problem is not, nor is it oriention setting problem.
In fact, you said that the front camera take pictures, because the mirror effect, so the preview is correct but the photos are mirror lights, according to the text of this most obvious.
If I describe this situation, then you need to be provided by hardware manufacturer datasheet, to modify the viewfinder / camera mirror set or options. General hardware will provide such register settings.
------ Solution ---------------------------------------- ----


I do is flat, only the front camera, as it happens I am also responsible for this camera. Just can not understand what you say "stop setting mirroring register."
taking photographs Echo has about 1s preview is inverted? Your situation is very strange that I have not encountered before. If you have modified the register set, then the thumbnails of the photos should be the opposite and viewfinder, and photos as well preserved.
I can confirm that s_mount_angle not achieve the purpose of what you expect, it can only modify oriention folding dump the whole picture, which can not be obtained by the center axis mirrored screen.
For you mentioned "jpeg encoding from right to left," I really have not seen so to set the front camera, it sounds more like image processing tools will go thinking I may be out the ^ _ ^

------ Solution ------------------------------------ --------
exif information problems, exif There is a rotation field.
------ Solution ---------------------------------------- ----


absolutely impossible.
Front camera requirements: thumbnails and photos consistent, and with the viewfinder opposite. That is the moment to re-photograph will be folded once. I'm pretty sure.
just get iphone test it, as well.
------ reference --------------------------------------- < br>
Thank you moderator.
camera does have a register set up a mirror, and I was changed before the preview displays the normal, if sanpshot register again when the modification times, photographing the end of the write back to the initial value, you can also take pictures normally, but back significant is backwards. Why they suspect jpeg encoding issues.
question, camera driver probe set attributes:
s-> s_camera_type = FRONT_CAMERA_2D ;/ / BACK_CAMERA_2D
/ / s-> s_mount_angle = 90; / / 0x13
s-> s_mount_angle = 270; / / 0x10
If it is before the camera, this should be the number s_mount_angle, this value is determined by how?
------ reference --------------------------------------- < br> in the camera driver in SENSOR_PREVIEW_MODE, SENSOR_SNAPSHOT_MODE respectively set to mirror the corresponding value register
have the following two questions:
1. taking photographs Echo has about 1s preview is inverted
2. vertical screen only echo wrong, horizontal screen photo shoot is inverted. But here is the same as the setting drive.
depressed ~
When I want to keep running with this setting in the drive mirroring register, not only in the initialization settings such as mirroring register a value, first ensure that anyway preview are normal, but in the jpeg encoding settings when taking pictures from right to left, the image can not it just 'jpeg encoding from right to left' This place is not found, this idea is not it?
tone through the front of the camera's heroes take a bubble ah ~
------ reference ------------------------ ---------------
'If you have modified the register set, then the thumbnails of the photos should be the opposite and viewfinder, and photos as well preserved. '
This is wrong, right, thumbnails and viewfinder should not do the same, preview image is photographed image is the way I see are like front camera
------ reference --- ------------------------------------

At first I also suspect that this value, But jpeg photos shot using a mobile phone to read metadata via IrfanView is no such flag of
------ reference ---------------------- -----------------

Oh, thank withheld enthusiastic reply.
today camera.java indeed see explanatory notes before the camera will flip around the central axis, that is a separate app to do so.
'thumbnails and photos unanimously' front camera should be so, but before the camera viewfinder contrary requirements, so flip?
some faint, engage in a few days it is not a problem? I am now either vertical or horizontal position, and imaging are the preview thumbnails
about folding up. Compare to find the machine to see tomorrow go wrong?
------ reference --------------------------------------- < br> on the front camera and preview imaging should flip, looking for a different platform reference machines from different manufacturers, some will and some will not flip, the conclusion:
bug or feature is determined by demand!
eventually have to be changed.
------ reference --------------------------------------- < br>

Ha ha ha ...... ask customer needs it ~ ~ ~
------ reference - --------------------------------------
Oh, this should be changed according to customer requirements , not their own is how to go nuts, Oh, I also do double camera, and more exchanges
------ reference ----------------- ----------------------

"not go nuts on how", and now I can not put it how.
before the camera will shoot out horizontally flipped, luckyboy brother, do not let it know how to flip ah?
say that you want to modify the mirror register, snapshot to modify, and preview image can indeed be the same, but the echo has flipped, evil camera ah ~
------ reference ------ ---------------------------------



V4l2CsiDevice.cpp V4l2SetRot () There is a ioctl (mCameraDevice, VIDIOC_S_CTRL, & ctrl)

preview and takepicture that will call it, this ioctl in the driver to adjust the direction of turn if the screen can not turn this V4l2SetRot () function is a point up and down and then look
- ----- reference ---------------------------------------
Thank lbmygf whether the platform is different in my code did not find you say V4l2CsiDevice.cpp and V4l2SetRot (),
VIDIOC_S_CTRL does have, but did not flip-related code,
from platform providers, the answer is, if the sensor type is set on the software front camera, imaging is the flip, not yet
solution speechless ing. . .
------ reference --------------------------------------- < br> The final solution is: driver set after the camera, with the image registers can be achieved consistent imaging and preview.
Will withheld is done on the platform on which tablet, software android3.0? Hardware platform?
------ reference --------------------------------------- < br>
Oh ...
I have multiple versions of android, hardware tegra2, How about you
------ reference -------------------------- -------------
admire moderators response rate, which is single-threaded do? !
We are mobile: Qualcomm 7x27, software 2.3 2.2, targeting low-end ^ _ ^ ~
------ reference ------------ ---------------------------


Qualcomm Oh we have to do, go home early today, did not work hehe ~ ~ ~
------ reference ----------------- ----------------------
:-), there are rare when the rest
------ reference ----- ----------------------------------
Will, in the code before the camera is how to achieve preview and photos Flip it around 180 degrees, look advice. Thank
------ reference ---------------------------------------
I also encountered this problem. . Hum ~ ~ survey no prospect for a whole day,
ask an expert, said that is normal rollover effects,
compared with a front camera htc phones, shoot out is flipped around. .

This should be the time of the data in the isp has flipped.


------ reference ------------------------------------ ---

In this case there is a problem, that is the side to take the phone to take pictures, thumbnails of people upside down. Edit thumbnails, so consistent with the preview, and photos On the contrary, the problem is solved.
There are four practical questions like this: real image, preview, thumbnails, photos; preview is a camera on the device when the photographer saw dynamic images, thumbnails are pressing the shutter after freeze picture, photo is the ultimate stored.
now mainstream devices such as yiyaaixuexi said, to preview with real image contrast, and thumbnails, photos, and real image the same. This design addresses the following two questions: the preview mirror effect, positive image after storage, the text properly. But the fact that I mentioned earlier question: the preview screen and press the shutter after the "preview" (thumbnail) reverse, the side machine is particularly evident. The solution is simple, the thumbnails into the real image opposite.
------ reference --------------------------------------- < br> add this method allows the lens to normal, but a different program to save the image is not the same, it may be reversed picture
protected void setDisplayOrientation (Camera camera, int angle) {
Method downPolymorphic;
try {
downPolymorphic = camera.getClass (). getMethod (
"setDisplayOrientation", new Class [] {int.class});
if (downPolymorphic! = null)
downPolymorphic.invoke (camera, new Object [] {angle});
} catch (Exception e1) {
}
}
------ reference ----------------------------------- ----
CAMERA there is a problem when the horizontal. Whether IPHONE, Samsung's mobile phone, or something else, there will be a direction 180 degrees upside down? Online brothers said to be G-SENSOR is not sensitive to the issue, there is this BUG decoding?

Android Online Solving case expressions must be constantexpressions

R.java disappeared following keyword final
correct wording
public static final int push_down_on = 0x7f040004;

become what it is today,
public static int push_down_on = 0x7f040004;
seeking recovery.
------ Solution ---------------------------------------- ----


Clean and then compile it
------ Solution ------------------------------- -------------
R.JAVA file problems, probably because xml files have the same ID number, this should be noted
------ reference - -------------------------------------
R.java is automatically generated during program compilation , you have to compile what can not it do
------ reference ------------------------------ ---------
compiled a lot of times
------ reference ----------------------- ----------------
or not can only be changed if else
------ reference ------- --------------------------------
I have encountered this problem now Which still does not solve ah brother help me
------ reference -------------------------- -------------
http://www.eoeandroid.com/forum.php?mod=viewthread&tid=77997&highlight =
------ reference ---------------------------------------
same question, originally good, the Set it to the emergence of this problem library
------ reference ------------------------------- --------
I am also a library on the project is set to appear this problem, it should be how to solve the country, seeking god? ? ? ? ?
------ reference --------------------------------------- < br>

I am also a library on the project is set to appear this problem, it should be how to solve the country, seeking god? ? ? ? ?
------ reference -------------------------------------- -

  
I am also a library on the project is set to appear this problem, it should be how to solve the country, seeking god? ? ? ? ?  

new sdk above are subject to change at the library, all you want to set library package, which the switch ... case statement can only be changed if ... else down. You can hover in the wrong place, ecplise prompted this one.
------ reference --------------------------------------- < br>
    
I am also a library on the project is set to appear this problem, it should be how to solve the country, seeking god? ? ? ? ?    
  
  
new sdk above are subject to change at the library, all you want to set library package, which the switch ... case statement can only be changed if ... else down. You can hover in the wrong place, ecplise prompted this one.  

my project changed if / else will be able to thank you ah
------ reference ------------------ ---------------------
11 F method is feasible. see link http://tools.android.com/recent/switchstatementconversion

Android Source compiler does not sign apk

As stated , apk need source code under certain api, but current source compiler environment does not know the future will not change, so I want to re-sign their own , but now I do not know how to get unsigned apk, welcome to the great God pointing.
------ Solution ---------------------------------------- ----
teach you a way to / system / app / below you compiled apk copy it , and then extract the tool to open the META-INF files to delete the following two CERT is to get no signature APK the
------ reference -------------------------------------- -

ah yesterday afternoon, just try to find a variety of Baidu one really quite fun
But jdk1.7 version jarsigner.jar signed apk problems need to use version 1.6 Results posted to the sub

2013年8月29日星期四

Android achartengine issue

Have a question to ask you about, I was in a tabhost which used achartengine, but I do not know why the set setClickEnabled (true) after not slide and zoom , and this is how you ask ? renderer.setPanEnabled (true, true); renderer.setZoomEnabled (true, true); are set
------ Solution ----------- ---------------------------------
this problem too abstract , achartengine I used to use just fine I do not know is what you tabhost controls whether the event is that it intercepted
------ reference ------------------------- --------------
have a good job , also thank you .

android port problems created by ServerSocket

In Activity by new ServerSocket (9090) created a service port, why when viewed through the netstat command and the port is not open?
then the client can not connect in any case, it is certainly the
Code:
server = new ServerSocket (12345);
System.out.println ("ip:" + server.getLocalSocketAddress () + "---- port:" + server.getLocalPort ());
System.out.println ("Server ip:" + server.getInetAddress ());
System.out.println ("Server build successful ************");
In logcat in to be able to view the "Server build success" and all of the outputs are normal, but that is not really open ports

But if it is created directly in the Application Program ServerSocket object, then you can open the port, the client connection is also normal
seeking advice! ! !
Note:
manifest in the network permissions have been added
android: name = "android.permission.INTERNET">
android: name = "android.permission.ACCESS_NETWORK_STATE">

------ Solution ------------------------------------ --------
simulator on a port other than the port on a PC, two mapping needs to be done

mapped to the local port to the simulator TCP/7100 port TCP/6100 (UDP is the same).
> adb-s emulator-5554 forward tcp: 6100 tcp: 7100
------ reference ---------------- -----------------------

Oh, that how to write the code inside directly mapped convert it? Every case, it is not appropriate
------ reference ------------------------------- --------
look
------ reference --------------------------- ------------
  This reply was moderator deleted at 2012-04-05 09:40:14

------ reference ------------------------------------ ---
same problem, ah, a port on the computer to establish good, put it inside to create Android has been unable to visit. Now there is an expert to answer it?
------ reference --------------------------------------- < br>
I put the entire program installed on the phone, and then access the phone ip, does not run on the simulator. This is not acceptable, the same can not access the port.
------ reference --------------------------------------- < br> The IP phone is not public IP, if not a LAN or through other means, then establish a Socket connection is accessible reach.
------ reference --------------------------------------- < br>
I put the entire program installed on the phone, and then access the phone ip, does not run on the simulator. This is not acceptable, the same can not access the port.  

phone's IP is not public IP, if not a local area network or by other means to establish a bridge Socket words are accessed invisible.

android support html5 video tag for online play you

I used webview load Html5 online play page, the page is displayed correctly, but click on the play when he has been stuck in this "Play buffer pages" in my sony 4.0 and motor 3.2 ; pad on both tried the same result.

question: android webview support html5 video tag you, there is no one in the android platform to achieve html5 online play?

------ Solution ------------------------------------ --------
android webview default is not supported by the HTML5,
------ Solution ------------------- -------------------------
like Android 4.0 comes with a browser supports html5 the above.
------ Solution ---------------------------------------- ----

how Html5 will not support it, but the support is not very good, no less powerful ios

------ Solution ------------------------------------ --------
possible that your video formats, even the html5 video tag is not supported by this problem, my colleagues and I have discussed.
------ Solution ---------------------------------------- ----
lz can play online
But you have to call the system of player can, you can see for yourself I have been for a long time this whole


the following code:
/ / html



/ / java
JavaScriptInterface jsInterface = new JavaScriptInterface (this);
webView.getSettings (). setJavaScriptEnabled (true);
webView.addJavascriptInterface (jsInterface, "JSInterface");


public class JavaScriptInterface {
private Activity activity;

public JavaScriptInterface (Activity activiy) {
this.activity = activiy;
}

public void startVideo (String videoAddress) {
/ / call the player (see here how to write your own)
Bundle bundle = new Bundle ();
bundle.putString ("path", address);
MyIntent.startIntent (WebViewActivity.this, MyIntent.VIDEO, bundle);
}
}
------ Solution ----------------------------------- ---------
can
------ reference -------------------------- -------------
log log:
06-13 09:41:26.990: E / libEGL (1217): call to OpenGL ES API with no current context ; (logged once per thread)
06-13 09:41:26.990: D / ShaderProgram (1217): couldn't load the vertex shader!
06-13 09:41:26.990: E / libEGL (1217): call to OpenGL ES API with no current context (logged once per thread) < br /> 06-13 09:41:26.990: D / ShaderProgram (1217): couldn't load the vertex shader!
06-13 09:41:26.990: E / libEGL (1217): call to OpenGL ES API with no current context (logged once per thread)
06-13 09:41: 26.990: D / ShaderProgram (1217): couldn't load the vertex shader!
06-13 09:41:26.990: E / libEGL (1217): call to OpenGL ES API with no current context (logged once per thread)
06-13 09:41:26.990: D / ShaderProgram (1217): couldn't load the vertex shader!
06-13 09:41:26.990: E / libEGL (1217): call to OpenGL ES API with ; no current context (logged once per thread)
06-13 09:41:26.990: D / ShaderProgram (1217): couldn't load the vertex ; shader!

------ reference --------------------------------- ------
mark rookie expressed concern
------ reference ------------------------ ---------------



I tried in 4.0, the player has been in a buffering state
------ reference ---------------------- -----------------




video format is mp4, so it should not form the question, and you get the results discussed what
------ reference ---------------- -----------------------
amount forget there is a problem with the video html seemingly made out of style how change anyone know
------ reference --------------------------------- ------
4.1
------ reference ------------------------------ ---------
I also do video label displayed on the browser on the phone, my Android version is 2.3.5, using the default browser, the player is no problem, but not automatically play, autoplay = "autoplay" did not work, but also a headache
------ reference ----------------------- ----------------
2.3.5 versions do support the video tag. . . I can not play



------ reference ------------------------------------ ---
brother, csdn on wood have the resources to provide source code examples download ah! Seeking to share connection to download

------ reference ------------------------------------ ---
wooden Me hindsight
------ reference -------------------------- -------------



this specific how to get, you can write more points you
------ reference -------------------------- -------------
brother. . . . I did not do any processing WebView in a WebView is white
------ reference ------------------------- --------------
demand should be no problem, live not, you can use the player
------ reference ---------- -----------------------------
phone can, the development board does not work? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?
Does anyone know
------ reference --------------------------------- ------
  The reply deleted by an administrator at 2013-04-15 16:55:58

------ reference ------------------------------------ ---
Will android4.0 inside video with phonegap package labels, full-screen video playback directly, does not want to play in full screen, it should be how to modify ah?
------ reference --------------------------------------- < br> autoplay in Andrews on no matter what, you can not automatically play

like a strange, music video playback depending on when you can automatically play, how they get?

android code obfuscation about gson

System.out.println (" before conversion str + + + + + + +>" + str);
lgrsp = gs.fromJson (str, LoginResponseInfo.class) ;/ / the JSON string into an object
System.out.println ("lgrsp + + + + + + +>" + lgrsp);

confused with other parts of the problem but did not find here , gs.fromJson () this method to print the parameter values ​​are correct, the result returned is null. NOTE : Do not confuse is not a problem .

confused script filled .
-keep class net.sf. ** {*;}
-keep class com.badlogic. ** {*;}
-keep class * implements com.badlogic.gdx.utils.Json *
-keep class com.google. ** {*;}

elsewhere in this package is also useful to a number of methods, such as the map, into json is correct. Tangle shi me ...

------ Solution ------------------------------------ --------
this really do not know Oh
------ reference ----------------------- ----------------
wooden someone pointing forehead ? ? ? ?
------ reference --------------------------------------- < br> LZ not solve ? with demand ah

2013年8月28日星期三

Android SDK SipDemo not register

 This post last edited by the shyy123 on 2013-08-14 10:22:02
I use the official SDK comes in SipDEMO, I packaged into APK, in HTCT328d models installed on the phone. Open, it will pop up directly interface allows you to fill SIP-related information, fill out, it will prompt Registered successfully! Then I can play wifi sip phone, but I installed on another phone, such as LGP880, open, no interface let me fill out the registration information, and I myself in the settings are completed, the interface did not suggest any words, notes, my two handsets are Android 4.0.3 Will, SIP Demo What is the phone requirements? I know that as long as the Android 2.3.3 system to support the above, but why is there above me tell what is going on? Great God there is to know, please tell younger, be grateful!
------ Solution ---------------------------------------- ----
    <uses-feature android:name="android.hardware.sip.voip" android:required="true" />
    <uses-feature android:name="android.hardware.wifi" android:required="true" />
    <uses-feature android:name="android.hardware.microphone" android:required="true" />

concrete is not very clear, it is a device outside your calendar does not support sip?
------ Solution ------------------- -------------------------

     
I go, that they have a way to add SIP CALL do?  

This is more difficult, I suggest you take a look Linphone source code is open source, there sip protocol stack and audio and video processing
------ reference ------------ ---------------------------

exactly the same rights and your piece, I tried Taiwan Huawei cell phone , is not acceptable. Solution?
------ reference --------------------------------------- < br> buddies do not tangle this, I also tried some phone support is not supported by some, perhaps a custom manufacturer of the SIP Call this when removed
------ reference ---- -----------------------------------


I go, that they have a way to add SIP CALL do?
------ reference --------------------------------------- < br>
         
I go, that they have a way to add SIP CALL do?    
  
  
This is more difficult, I suggest you take a look Linphone source code is open source, there sip protocol stack and audio and video processing  

Thank you, I am now looking at the
------ reference ---------------------------- CSipSimple -----------

             
I go, that they have a way to add SIP CALL do?      
    
    
This is more difficult, I suggest you take a look Linphone source code is open source, there sip protocol stack and audio and video processing    
  
  
Thank you, I am now looking at the CSipSimple  

CSipSimple is also good, is somewhat simpler than Linphone

Android Spinner menu to select a listview after switching problem

My Spinner inside Beijing and Shanghai and other places, and then I want to switch to a different event listview, but without success , why, I put two pictures on two array , and other things are static.

package com.Film;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.AdapterView;
import android.widget.AdapterView.OnItemClickListener;
import android.widget.ArrayAdapter;
import android.widget.ListView;
import android.widget.SimpleAdapter;
import android.widget.Spinner;
import android.widget.Toast;

public class MainPageActivity extends Activity {
/** Called when the activity is first created. */
private int pic[] = new int[] { R.drawable.meijia,
R.drawable.shoududianyingyuan, R.drawable.ume };
private int picShanghai[] = new int[] { R.drawable.jinyiyingcheng,
R.drawable.longzhimeng, R.drawable.shanghaidaguangming,
R.drawable.shanghaiguojinbailigong, R.drawable.xingmeiguoji };

private ListView datalist = null;
private List<Map<String, String>> list = new ArrayList<Map<String, String>>();
private SimpleAdapter simpleAdapter = null;
// ////////////////////////////
private List<String> listAddress = new ArrayList<String>();
private String address = "北京";
private Spinner mySpinner;
private ArrayAdapter<String> adapter;

@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
datalist = (ListView) findViewById(R.id.listdata);
// 第一步:添加一个下拉列表项的list,这里添加的项就是下拉列表的菜单项
listAddress.add("北京");
listAddress.add("上海");
listAddress.add("深圳");
listAddress.add("南京");
listAddress.add("重庆");

mySpinner = (Spinner) findViewById(R.id.spinner_City);

// 第二步:为下拉列表定义一个适配器,这里就用到里前面定义的list。
adapter = new ArrayAdapter<String>(this,
android.R.layout.simple_spinner_item, listAddress);

// 第三步:为适配器设置下拉列表下拉时的菜单样式。
adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);

// 第四步:将适配器添加到下拉列表上
mySpinner.setAdapter(adapter);
// 第五步:为下拉列表设置各种事件的响应,这个事响应菜单被选中
mySpinner
.setOnItemSelectedListener(new Spinner.OnItemSelectedListener() {

public void onItemSelected(AdapterView<?> arg0, View arg1,
int arg2, long arg3) {
// TODO Auto-generated method stub
// 将所选mySpinner 的值带入myTextView 中
// 将mySpinner 显示
address = adapter.getItem(arg2);
Toast.makeText(MainPageActivity.this,
"您选择的是:" + address, 1000).show();

arg1.setVisibility(View.VISIBLE);

}

public void onNothingSelected(AdapterView<?> arg0) {

arg0.setVisibility(View.VISIBLE);
}
});

// 下拉菜单弹出的内容选项触屏事件处理
/*
* mySpinner.setOnTouchListener(new Spinner.OnTouchListener() { public
* boolean onTouch(View v, MotionEvent event) { // TODO Auto-generated
* method stub // 将mySpinner 隐藏,不隐藏也可以,看自己爱好
* v.setVisibility(View.INVISIBLE); return false; } });
*/
// 下拉菜单弹出的内容选项焦点改变事件处理
mySpinner.setOnFocusChangeListener(new Spinner.OnFocusChangeListener() {
public void onFocusChange(View v, boolean hasFocus) {
// TODO Auto-generated method stub
v.setVisibility(View.VISIBLE);
}
});
// /////////////////////////////
addTheater(address);

}

// /根据地方动态显示影院列表
public void addTheater(String choiceAddress) {
list.clear();
if(choiceAddress.equals("上海")) {
for (int i = 0; i < picShanghai.length; i++) {
Map<String, String> map = new HashMap<String, String>();
map.put("pic", String.valueOf(picShanghai[i]));
map.put("title", "上海电影院");
map.put("goods", "好评数");
map.put("goods_counts", "10");
map.put("starts", "星级");
map.put("starts_pic", "星级图片");
map.put("bads", "坏评数");
map.put("bads_counts", "10");
map.put("juli", "距离");
map.put("juli_counts", "2.3公里");
this.list.add(map);
}
}
else if(choiceAddress.equals("北京")) {
for (int i = 0; i < pic.length; i++) {
Map<String, String> map = new HashMap<String, String>();
map.put("pic", String.valueOf(pic[i]));
map.put("title", "万达电影院");
map.put("goods", "好评数");
map.put("goods_counts", "10");
map.put("starts", "星级");
map.put("starts_pic", "星级图片");
map.put("bads", "坏评数");
map.put("bads_counts", "10");
map.put("juli", "距离");
map.put("juli_counts", "2.3公里");
this.list.add(map);
}
}

this.simpleAdapter = new SimpleAdapter(this, this.list, R.layout.list,
new String[] { "pic", "title", "goods", "goods_counts",
"starts", "start_pic", "bads", "bads_counts", "juli",
"juli_counts" }, new int[] { R.id.pic, R.id.title,
R.id.goods, R.id.goods_counts, R.id.starts,
R.id.starts_pic, R.id.bads, R.id.bads_counts,
R.id.juli, R.id.juli_counts });
this.datalist.setAdapter(this.simpleAdapter);
datalist.setOnItemClickListener(new OnItemClickListener() {

@Override
public void onItemClick(AdapterView<?> arg0, View arg1, int arg2,
long arg3) {
HashMap<String, String> map = (HashMap<String, String>) datalist
.getItemAtPosition(arg2);
Intent intent = new Intent(MainPageActivity.this,
TheaterActivity.class);
startActivityForResult(intent, 0);

}

});
}

}

------ Solution ------------------------------------- -------
Haha , brother giant cow
------ reference -------------------------- -------------
Yeah, method does not put an event inside, I carelessness. . .
------ reference --------------------------------------- < br> best collated to provide a path to download ! ! ! Hey ! ! !
------ reference ---------------------------------- -----
good finishing well, providing a path to download ! ! ! Hey ! ! !

android under four 4-way split screen play HD h264 format rtspstreams

Display with videoview do so. Play all the way no problem at all, no card, it is real, but it can not play much, but also error. Automatically pop up a dialog box can not be played.
with surfaceview same.
I heard is because android underlying support only way decoding.
should have to transplant ffmpeg got it? But this is the soft decoding ah, the efficiency is too low a bar, and it seems quite complex.

who has a better way to do it.

------ Solution - -------------------------------------------

  
4.2 multi-channel decoding certain support it? That is, the direct drag four videoview set uri can be directly rtsp live broadcast?   
If it is certain, I will apply for the company to try to buy a 4.2 tablet. .     
4.2.0
Anyway, my phone system put 8 no problem to put eight videoview directly put the network at the same time have a little better no card, 4.0 phones tested three will not
------ reference ---------------------------- -----------

so many days, and no one ......
------ reference --------------------------- ------------
that 4.2 or later versions do not support it low decoding multi-channel Unless you can change the underlying decoding, engage in the framework layer is not out of
------ reference - --------------------------------------
such a difficult issue silently The passing
------ reference -------------------------------------- -


4.2 multi-channel decoding certain support it? That is, the direct drag four videoview set uri can be directly rtsp live broadcast?
If it is certain, I will apply for the company to try to buy a 4.2 tablet. .
------ reference - --------------------------------------
demand seems a bit fierce, multi-channel playback, Oh. Even in the high-end mobile phone can be put on the previous device how to do it? In addition, users are looking to put do not faint? Sound conflict how do?
------ reference --------------------------------------- < br>

because to do now is this. The last time the computer monitor multiple cameras are not normal Mody. So tablet is now required to monitor four on OK, each screen can also be seen.
------ reference --------------------------------------- < br>

4 screen play, it is the shield of sound, which is double the screen, you can make this picture full screen, and loud. This is a small problem. Able to broadcast as long as four years, everything is not something
------ reference --------------------------- ------------

    
4.2 multi-channel decoding certain support it? That is, the direct drag four videoview set uri can be directly rtsp live broadcast?     
If it is certain, I will apply for the company to try to buy a 4.2 tablet. .         
  
  4.2.0
Anyway, my phone system put 8 no problem to put eight videoview directly put the network at the same time have a little better no card, 4.0 tested three phones will not work  


I try these days to find equipment
------ reference - --------------------------------------
try to share after share common learning.
------ reference --------------------------------------- < br>


found a 4.3, but found it in the settings Leng Shimo developer option ......
then said at the meeting the project requirements have changed, but I personally would really like to try, and so tried to make up some.
Hopefully after version 4.2 decoding ability really to force.
------ reference --------------------------------------- < br> Added: Today tried a Samsung phone, the version is 4.2.1, together with the underlying does support multi-channel playback, play online testing using the URL rtsp is no problem, I experimented with a 4-way, wireless net, fairly smooth.
headache is playing our own the rtsp h264 stream to die, it is said that our company is also very pure stream. Large head, if based on 4.0 and 4.1 versions of the software to do it in 4.2 can not play, you have to use third-party decoder library developed.

Android Some activity which can not adjust the volume

There is some activity in the application can not adjust the volume, press the volume keys of the system shows that only the sound but no bar to adjust the volume , the volume can not be adjusted .
The following is a fragment of Manifest

<uses-sdk android:minSdkVersion="10" android:targetSdkVersion="16"/>
   
    <uses-permission android:name="android.permission.INSTALL_PACKAGES"/>
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
    <uses-permission android:name="android.permission.CHANGE_CONFIGURATION"/>
    <uses-permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS"/>

    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:name=".IpvsApplication">
       
        <activity
            android:name=".InitActivity"
            android:theme="@android:style/Theme.NoTitleBar"
            android:screenOrientation="portrait">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

activity code
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.act_init);

// app = (IpvsApplication) getApplication();
// app.setCallBack(callback);
}

commented out , this activity basically did not do anything . Which heroes have encountered such a problem, but also hope the wing
------ Solution ------------------------ --------------------
public boolean onKeyDown (int keyCode, KeyEvent event) {

if (keyCode == KeyEvent.KEYCODE_VOLUME_DOWN)
{
return true;
}
else if (keyCode == KeyEvent.KEYCODE_VOLUME_UP)
{
return true;
}

return super.onKeyDown (keyCode, event);
}
------ reference ----------------------------------- ----


MD, dawned ! ! know where is the problem , thank you .

android related JNI piece

Error log is:
D / dalvikvm (1010): Trying to load lib / data / data / com.mediatek.cmmb.app / lib / libcmmbsp.so 0x4051bb80

W / System.err (1010): java.lang.UnsatisfiedLinkError: Cannot load library: reloc_library [1346]: 86 cannot locate '_ZN7android7RefBase14moveReferencesEPvPKvjRKNS_22ReferenceConverterBaseE' ...

W / System.err (1010): at java.lang.Runtime.load (Runtime.java: 425)

libcmmbsp.so is OK at 4.0 platform, running on 2.3 platform error, because the version of the problem do? Library does not feel so because the version problem ah? ?
so no source, so I do not know how to do?

seeking heroes.
------ Solution ---------------------------------------- ----
it can not locate this function.
android::RefBase::moveReferences(void*, void const*, unsigned int, android::ReferenceConverterBase const&)

this function in previous versions of Android 4.0 is not. This is an internal library functions, does not belong to NDK. Only on android platform code itself uses.
------ Solution ---------------------------------------- ----
ah, backward incompatible! If you must compatible with 2.3, you have to replace it with something else.
------ Solution ---------------------------------------- ----


compiled out of the library with a 4.0 on a 2.3, of course, there may be a problem. . .
W / System.err (1010): java.lang.UnsatisfiedLinkError: Cannot load library: reloc_library [1346]: 86 cannot locate '_ZN7android7RefBase14moveReferencesEPvPKvjRKNS_22ReferenceConverterBaseE' ...

This has clearly tell you that RefBase :: moveReferences not found.
I checked on the gingerbread is really no, yes ics just added.

------ reference ------------------------------------ ---
library does not feel so because the version problem ah.
will ah.

------ reference ------------------------------------ ---
Are you this so used inside the 4.0 platform related things? ?
------ reference --------------------------------------- < br> I feel as if the problem does not occur because the version.
path is right, why would fail to load it? ?
permissions in the application loading libraries which you need to declare? ?
------ reference --------------------------------------- < br>
JNI library is where things, there should be no bar. I do not know, a source said that wood headache, do not know what is written inside.
------ reference --------------------------------------- < br> seeking guidance ah seek advice ~ ~
------ reference ------------------------------- --------
identify with so library files not related error message is clearly pointed out to him you did not find the library file to manually push it, looking like the path / data / data / com.mediatek.cmmb.app / lib / libcmmbsp.so, or put here, and system / lib under all push it a try.
------ reference --------------------------------------- < br> different versions of android source code changes or big quantity, from the log can not see because of the link library function, it is best to place the library source code corresponding android projects can be seen compiled.
------ reference --------------------------------------- < br> You should specify ndk-build platform ApplicationManifest the min SDK compatible.





------ reference -------------------- -------------------
actually originally set, only in 4.0 platform is adopted. Why 2.3 No No load! !
------ reference --------------------------------------- < br> That is, if there is no source, and a set of so this app is not valid in 2.3, which is obsolete?
------ reference --------------------------------------- < br> I tell you,. so use it, have to take your package name, class name, method name, set with. so inside, like to use. so

------ reference ------------------------------------ ---
you can look for the original. so use it, the corresponding engineering package names, class names, method names, can only be set exactly the same with the original works, you can use this. so. What other people say is not compatible with versions compatible, completely okay, lead you astray.
------ reference --------------------------------------- < br> so to speak, and so this app was originally set, is the 4.0 runs OK, and then migrate to version 2.3 error. Because before the originally set, so the package names, class names, method names are the same, right?
------ reference --------------------------------------- < br>

sorry, I do not understand the landlord, in fact, means that the landlord just for the android version of the new construction did not re-use. so I was wrong
------ reference ---- -----------------------------------
indeed a version of the problem. Thank heroes
------ reference ------------------------------------ ---
I ask you how to solve this problem ah I have encountered this problem I hope you can give points Thank you, my opinion qq285393054

2013年8月27日星期二

Android About the handler and static variables consulting

A program written in the class, there are some time-consuming operation, use the thread + handler, the time-consuming operation into thread execution, completion handler to send the message, and then update the UI.
The question now is what I wrote in the class handler, always prompts a warning:
This Handler class should be static or leaks might occur
I searched the Internet this warning, the resulting solution is
Handler class should be static type, or they may cause leakage. In the process queued messages in the message queue maintained its target Handler class applications. If Handler is an inner class, then it will remain it in the outer class references. In order to avoid the disclosure of this external class Handler should be declared as static nested class, and use the weak application of the outer class.

about usage examples are:

static class MyHandler extends Handler {
                WeakReference<PopupActivity> mActivity;

                MyHandler(PopupActivity activity) {
                        mActivity = new WeakReference<PopupActivity>(activity);
                }

                @Override
                public void handleMessage(Message msg) {
                        PopupActivity theActivity = mActivity.get();
                        switch (msg.what) {
                        case 0:
                                theActivity.popPlay.setChecked(true);
                                break;
                        }
                }
        };

        MyHandler ttsHandler = new MyHandler(this);
        private Cursor mCursor;

        private void test() {
                ttsHandler.sendEmptyMessage(0);
        }

assume that the handler class is B, this way, handler defined as static, in order to use the handler class defined in class A, a number of variables, these variables in class A have to be defined as static.
I would like to ask about, so a lot of static variables affect the operation of the program do? It will not be a waste of memory?
Thank you ~
------ Solution --------------------------------- -----------
Haha, it should be no problem. This is not a lot of static. .
------ Solution ---------------------------------------- ----
your thinking a little a little bit wrong

static class is to disconnect the link MyHandler and outside class, so that the inner class and outside class does not have any contact is static class purposes.

You do not need to declare a large number of the Activity by static variables to provide to the handler to use (this code is not only unsightly but the design is very unreasonable). Because you have a mActivity MyHandler weak reference so you can call mActivity any public functions and variables.

So, you just need to be defined in mAcivity public XXX getXXX () method to provide MyHandler you need a variable package together, we can be friends.
------ Solution ---------------------------------------- ----
If the handler is not static, then when after this activity destory may not be garbage collected, thus causing the so-called memory leak
------ reference ----- ----------------------------------

dozen variables did not affect me?
------ reference --------------------------------------- < br>
ah, really a awoken ah, thank you to answer, I understand ^ _ ^
------ reference -------------- -------------------------

hello, and then ask you a question, I used mActivity direct access to which it belongs Activity The variables (including private), can be accessed. No use setter and getter (found using getter and setter, then a lot of variables to be set getter and setter), I do not know my way in the design of this access whether it is reasonable?
Also please advise, thank ~
------ reference ----------------------------- ----------
inner classes, I can.
------ reference --------------------------------------- < br>
Oh, thank ~
------ reference ----------------------------- ----------
this learning a teachable

Android Phone C / S software how to validate user

If you enter an account number and password , the server returns cookie, if someone is disabled cookie supposed
------ Solution --------------------- -----------------------
rest mode , token plus ssl safer
------ Solution ------ --------------------------------------
http post method request ah. . .
------ reference --------------------------------------- < br> solution solve solving
------ reference - --------------------------------------

In fact, I do not understand and what mechanisms are needed to verify the user's request security
user account password to use , the server returns a success , but if you want to request the server to verify the legitimacy of how data is returned , if you simply use a cookie or session, the event has been stolen , you can not imitate other people requested it
------ reference ---------------------------------------

like micro believe this software , landing once, each time you open an account before exiting are , how to do, just press the settings in the account in order to really exit the user exit
------ reference ---------------------------------------

like micro believe this software , landing once, each time you open an account before exiting are , how to do, just press the settings in the account in order to really exit user exit

Android display word and pdf documents, how to achieve it

Hello everyone! Android
I was a novice, recent projects, of which there is a demand for Android application is to view word and pdf format documents (PS: not with intent to call third-party software to open Documentation oh ~), but Android does not directly display the word and pdf document view. So the rookie checked the Internet for a long time a very long time wow ==.
For the word, many people say is poi parsed, and then re-written in html, and finally with WebView display. So, this is the easiest way to the most common Mody? I feel very troublesome == there are other ways it?
For the pdf, also seemed to parse Apache's pdfbox pdf, do have to pay the written html? I got a MUPDF reader source, does not seem to do that. But also a lot of trouble a lot of trouble.
Well I was a novice, not to mention parse html source files and replication difficulty is that we can re-written in html, I always feel no insurance, can guarantee exactly what the source document format, Some of the content can be guaranteed not to be missed it. . . Also, some people say poi only parse. Doc then replicated html, against. Docx difficult inflicted html? But someone said poi resolution. Docx is maintained continuously updated technology, and poi parse. Doc that some components have not updated. I am even more confused, if I work hard to learn poi parse. Doc, this component sound it can be fully resolved correctly? And if. Doc parsing Well,. Docx can solve the problem poi thing?
I just do not want to waste more time detours, so here ask where the great God who csdn give suggestions and direction, okay?
------ Solution ---------------------------------------- ----
http://code.google.com/p/apv/
http://code.google.com/p/vudroid/
many do, you will have a look online
------ Solution -------------------------- ------------------
these two open source libraries to meet the needs of the landlord it
------ reference ----- ----------------------------------
hey. . . Good strange, since the use of CSDN after it sent a total of three posts, nobody ever replied.
------ reference --------------------------------------- < br> http://code.google.com/p/apv/
http://code.google.com/p/vudroid/
Both are displayed in pdf? Or are word and pdf ah. All in English. . .
------ reference --------------------------------------- < br> PDF can convert html server what
------ reference ----------------------------- ----------
Also, in the end is the word and pdf html traveled on the service side, high efficiency, or the word and pdf traveled swf high efficiency it?
------ reference -------------------------------------- -
same question, android client how to parse microsoft office documents.
vudroid source down, the effect is not ye, pdf documents in drag up and down when the display is very card.
------ reference --------------------------------------- < br> vudroid APK installation why not open it also reported the error load page

android directory tree

I am a android beginner, now doing a show in a small program android file directory , you need to show up in a tree style , but I do not know how dynamic multi-level directory will be added to the ListView control , make friend with experience in the development ideas, grateful brother !
------ Solution ---------------------------------------- ----
I have this demo
------ reference ----------------------------- ----------
can be sent to me to see you, my mail : android927@163.com. Thank you very much ! ! !
------ reference --------------------------------------- < br> I now do with a tree structure to achieve android phone's file directory ( file manager ) , how to achieve the levels on your phone files and folders in a tree display ?
------ reference --------------------------------------- < br> also gave me a , 357861819@qq.com
------ reference --------------------------- ------------
can send one to me? kunchan@126.com
------ reference ----------------------------------- ----
resources can share what I also want to look at . . .
------ reference --------------------------------------- < br> Qiufa 987604356@qq.com
------ reference ----------------------------- ----------
Qiufa guxing_574842645@qq.com

2013年8月26日星期一

android opengles phone wake graphical interface textures are gone,graphics white

When the phone from the lock screen to unlock and found a running program to draw graphics all turned white;
original graphic textures are gone;
If you exit the program and reopen it then appears normal;

I want to lock the screen, then it should go through onSurfaceChanged method; method so I suspect a problem;
below the main posting my renderer code


public abstract class AbstractRender implements Renderer{

AnimationCallback mCallback ;
int viewWidth ;
int viewHeight ;
int[] mViewport = null ;

float scale = 0.5f ;
public int[] textures ;
@Override
public void onSurfaceCreated(GL10 gl, EGLConfig config) {
gl.glEnable(GL10.GL_TEXTURE_2D); //Enable Texture Mapping ( NEW )
gl.glShadeModel(GL10.GL_SMOOTH); //Enable Smooth Shading
gl.glClearColor(0.0f, 0.0f, 0.0f, 0.5f); //Black Background
gl.glClearDepthf(1.0f); //Depth Buffer Setup
gl.glEnable(GL10.GL_DEPTH_TEST); //Enables Depth Testing
gl.glDepthFunc(GL10.GL_LEQUAL); //The Type Of Depth Testing To Do

//Really Nice Perspective Calculations
gl.glHint(GL10.GL_PERSPECTIVE_CORRECTION_HINT, GL10.GL_NICEST);
//纹理相关       
//        IntBuffer textureBuffer = IntBuffer.allocate(6); 
//        gl.glGenTextures(6, textureBuffer); 
//       
//        textures = textureBuffer.array();
//        bindTexture(gl);
       
}

@Override
public void onSurfaceChanged(GL10 gl, int width, int height) {
viewWidth = width ;
viewHeight = height ;
mViewport = new int[]{0,0,width,height};
Log.d("onSurfaceChanged", "onSurfaceChanged,");
gl.glViewport(0, 0, width, height);
float ratio = (float)width/height;
gl.glMatrixMode(GL10.GL_PROJECTION);
gl.glLoadIdentity(); //Reset The Projection Matrix
gl.glFrustumf(-ratio, ratio, -1, 1, 2, 12);
((CubeActivity)mCallback).mGrabber.getCurrentProjection(gl);
gl.glMatrixMode(GL10.GL_MODELVIEW); //Select The Modelview Matrix
gl.glLoadIdentity(); //Reset The Modelview Matrix
gl.glDisable(GL10.GL_DITHER);
        gl.glActiveTexture(GL10.GL_TEXTURE0);
}
float angleX = 30f ;

float angleY = -45f ;

@Override
public void onDrawFrame(GL10 gl) {
if(mCallback != null ){
//Log.d("onDrawFrame", "onDrawFrame");
mCallback.updateTime() ;
mCallback.worldRotate() ;
mCallback.layerRotate() ;
}
gl.glDisable(GL10.GL_DITHER);
// gl.glClearColor(0.5f,0.5f,0.5f,1);
gl.glClear(GL10.GL_COLOR_BUFFER_BIT | GL10.GL_DEPTH_BUFFER_BIT);
// gl.glMatrixMode(GL10.GL_MODELVIEW);
gl.glLoadIdentity();
// 设置观察点位置
GLU.gluLookAt(gl, 0, 0, 1.0f, 0, 0, 0, 0, 1, 0);
gl.glTranslatef(0, 0, -3.0f);
gl.glScalef(scale, scale, scale);
// 旋转魔方,绕X轴旋转30度,然后绕Y轴旋转45度
gl.glRotatef(angleX, 1, 0, 0);
gl.glRotatef(angleY, 0, 1, 0);
gl.glColor4f(0.7f, 0.7f, 0.7f, 1.0f);
// gl.glEnableClientState(GL10.GL_VERTEX_ARRAY);
// gl.glEnableClientState(GL10.GL_COLOR_ARRAY);
//
// gl.glEnable(GL10.GL_TEXTURE_2D);
// gl.glEnableClientState(GL10.GL_TEXTURE_COORD_ARRAY) ;
//
// gl.glEnable(GL10.GL_CULL_FACE);
// gl.glFrontFace(GL10.GL_CW);
//     gl.glShadeModel(GL10.GL_SMOOTH);
//     gl.glEnable(GL10.GL_DEPTH_TEST);
    ((CubeActivity)mCallback).mGrabber.getCurrentModelView(gl);
    // 绑定纹理
// gl.glBindTexture(GL10.GL_TEXTURE_2D, texture);
draw(gl);
// 禁用顶点、纹理坐标数组
// gl.glDisableClientState(GL10.GL_VERTEX_ARRAY);
// gl.glDisableClientState(GL10.GL_TEXTURE_COORD_ARRAY);
// gl.glDisableClientState(GL10.GL_COLOR_ARRAY);
// gl.glDisable(GL10.GL_DEPTH_TEST);
//        gl.glDisableClientState(GL10.GL_CULL_FACE);
//angle++ ;
}

protected abstract void draw(GL10 gl);

public interface AnimationCallback{
void worldRotate();
void layerRotate();
void updateTime();
}

public void  setScale(float _scale){
scale = scale *_scale ;
if(scale > 0.85f){
scale = 0.85f ;
}else if(scale < 0.1f){
scale = 0.1f ;
}
//缩放后要重新将立体点转换成2维的平面坐标,因为立方体大小改变了
((CubeActivity)mCallback).isPoint2DProjected = false ;
}
}


To be honest for some method calls are not very clear ...


Here is the draw method:

public void draw(GL10 gl,int[] texture){
gl.glEnableClientState(GL10.GL_VERTEX_ARRAY);
gl.glEnableClientState(GL10.GL_TEXTURE_COORD_ARRAY);
// mIndexBuffer.position(0);
// mVertexBuffer.position(0);
// mColorBuffer.position(0);
// mTextureBuffer.position(0);
// gl.glEnable(GL10.GL_CULL_FACE);
gl.glFrontFace(GL10.GL_CCW);
// gl.glShadeModel(GL10.GL_FLAT);
gl.glCullFace(GL10.GL_BACK);
// gl.glEnable(GL10.GL_DEPTH_TEST); //不会画被挡住的图形部分
// gl.glVertexPointer(3, GL10.GL_FLOAT, 0, mVertexBuffer);
//gl.glColorPointer(4, GL10.GL_FIXED, 0, mColorBuffer);

//gl.glTexCoordPointer(2, GL10.GL_FLOAT, 0, mTextureBuffer);
for(int i = 0 ;i < 27 ;i++){
mWorldCubeList.get(i).draw(gl);
}
// gl.glDisable(GL10.GL_DEPTH_TEST);
//      gl.glDisableClientState(GL10.GL_CULL_FACE);
      gl.glDisableClientState(GL10.GL_VERTEX_ARRAY);
      gl.glDisableClientState(GL10.GL_TEXTURE_COORD_ARRAY);
//gl.glDrawElements(GL10.GL_TRIANGLES, mIndexCount, GL10.GL_UNSIGNED_SHORT, mIndexBuffer);
}



mWorldCubeList.get (i). draw (gl);

then a draw is as follows:

public void draw(GL10 gl){

if(this.bInitTexture){
this.loadGLTexture(gl);
bInitTexture = false;
}


//gl.glColor4f(mFaceColor.red, mFaceColor.green, mFaceColor.blue, mFaceColor.alpha);

//if(!mFaceColor .equals(UtilHelper.BLACK) ){
// Enable the texture state
// gl.glEnableClientState(GL10.GL_TEXTURE_COORD_ARRAY);
// Point to our buffers
gl.glBindTexture(GL10.GL_TEXTURE_2D, mTextureId);
 
FloatBuffer textureBuffer = getTextureBuffer();
textureBuffer.position(0);
gl.glTexCoordPointer(2, GL10.GL_FLOAT, 0, textureBuffer);
//}else{
//}

ShortBuffer indicesBuffer = getIndicesBuffer();
indicesBuffer.position(0);
        gl.glDrawElements(GL10.GL_TRIANGLE_STRIP, 4, GL10.GL_UNSIGNED_SHORT, indicesBuffer);
       // if (!mFaceColor .equals(UtilHelper.BLACK)) {
        //gl.glDisable(GL10.GL_TEXTURE_2D);
   // gl.glDisableClientState(GL10.GL_TEXTURE_COORD_ARRAY);
  
      // }
}



really do not know the screen from the lock screen to unlock the need to deal with what, how texture is gone ...

hope someone can answer!!
------ Solution ---------------------------- ----------------

detailed looked under public void onSurfaceCreated (GL10 gl, EGLConfig config)
This method, when using OpenGL ES, once stopped rendering thread, the context will be lost, the program which will be used to image resources are recycled, so you need public void onSurfaceCreated (GL10 gl, EGLConfig config) This method loads the resources in the picture
------ reference ---------------------------- -----------
I think you need to AbstractRender class which override onResume () method, using OpenGL on the picture to reload
------ reference ----- ----------------------------------

detailed looked under public void onSurfaceCreated (GL10 gl, EGLConfig config)   
This method, when using OpenGL ES, once stopped rendering thread, the context will be lost, the program which will be used to image resources are recycled, so you need public void onSurfaceCreated (GL10 gl, EGLConfig config) This method loads the resources in the picture  


problems found, now replies, the original lock screen and then unlock trigger onSurfaceCreated method, resulting in a picture before initializing resources are recovered, and I did not regenerate those pictures, always thought only trigger lock screen unlock onSurfaceChanged method, originally did not think it wrong way more than this one has been handled well, thank you!

Android2.2 JSON problem

Lane project uses json yesterday , it was found a very egg pain problems , android2.2 comes org.json.JSONArray did not actually remove method . So the Internet contains a org.json package , running up and run to remove it encounters an exception , checked the Internet is a packet collisions . Since I have not changed , changed json-lib, results and error , checked the Internet actually said google does not support json-lib, do not know is not true . So decided to rewrite JSONArray, estimate the level is not enough, re- finish or a variety of issues .
Will you next time you use android2.2 development is how to deal json, comes with egg package does not remove too much pain .
------ Solution ---------------------------------------- ----
not how used, but rarely now 2.2 mobile phones in use ..
------ Solution -------------- ------------------------------
try FastJson
------ Solution --- -----------------------------------------
school learning , attention in the ~ ~
------ Solution --------------------------------------- -----
with Google jar package, parsing JSON class import com.google.gson.Gson;
import com.google.gson.reflect.TypeToken;
Type listType = new TypeToken > () {}. getType ();
Gson gson = new Gson ();
LinkedList users = gson.fromJson (json, listType);
------ reference -------------- -------------------------
company's project is 2.2 , no way
------ reference --- ------------------------------------
Thank you for your answer , FastJson not tried , Available to study under , Gson not what I want function , and finally themselves , the method is to set down org.json source , another package name does not conflict

Android SystemProperties.set problem, very strange. .

This SystemProperties.set (string name, string value) we are very familiar with it, what have encountered this problem
When the program first set SystemProperties.set ("frank", "1");
Then keep setting SystemProperties.set ("frank", "2");

String lang = SystemProperties.get ("frank"); shown as a;

SystemProperties.set ("frank", "2"); actually invalid. . . Added a while (true) {

If reading is less than 2, it has been SystemProperties.set ("frank", "2"); reading, brake;


}
can. . SystemProperties is reflective. . Oh, how could this not be a continuous, slow response Mody. .



------ Solution ------------------------------------ --------
SystemProperties permission is required by the prefix for verification.
You can set the program to UID System, and then use System permissions Properties, such as service starts with.
------ Solution ---------------------------------------- ----
SystemProperties is prop service operating it, this is not necessarily synchronized
but to prop service responds to the request, do deal with it
------ reference ----------------------- ----------------
Oh prefix validate these times spent oh. . Justified

------ reference ------------------------------------ ---
Xianxie try

------ reference ------------------------------------ ---

looked at the source ~ ~ should be, LS two expert said right. Yes, thanks, oh
------ reference ------------------------------- --------
I also encountered this problem, I told the landlord, like a dead loop. . . The result was invalid, SystemProperties.set ("persist.sys.onoffsounds", "0"); log out has always been a hit to begin setting "1", did not understand why. . . Solving

[Android] Would like to ask , eclipse code editor how to return tothe previous step

edit the code in eclipse , do not accidentally delete or change some code , how to return to the previous step as WORD change the return key
------ Solution --------------------------------------------
ctrl + Z
------ Solution ---------------------------------------- ----
ctrl + z, the next step is ctrl + y
------ Solution ----------------------- ---------------------
http://www.blogjava.net/action/articles/17339.html
With what kind brother finishing
------ reference ------------------------------ ---------


very active ah you often see . help me look at this simple question , right http://bbs.csdn.net/topics/390527212
------ reference ----------- ----------------------------


HELLO I have something to find you. This is the look you are very active in CSDN . I usually self Andrews Can you take me with ah , some small problem, I can pay compensation

Android The method setBackgroundDrawable (Drawable) from the typeView is deprecated solving

Code is as follows
package com.example.helloandroid;

import android.app.Activity;
import android.os.Bundle;
import android.view.MotionEvent;
import android.view.View;
import android.view.View.OnTouchListener;
import android.widget.ImageButton;

public class MainActivity extends Activity {

private ImageButton Ibtn;

@ Override
public void onCreate (Bundle savedInstanceState) {
super.onCreate (savedInstanceState);
setContentView (R.layout.activity_main);
Ibtn = (ImageButton) findViewById (R.id.imageBtn);
Ibtn.setOnTouchListener (new OnTouchListener () {
@ Override
public boolean onTouch (View v, MotionEvent event) {
if (event.getAction () == MotionEvent.ACTION_DOWN) {
Ibtn.setBackgroundDrawable (getResources (). getDrawable (R.drawable.press));
}
else if (event.getAction () == MotionEvent.ACTION_UP) {
Ibtn.setBackgroundDrawable (getResources (). getDrawable (R.drawable.nopress));
}
return false;
}
});
}
}



setBackgroundDrawable function which hit the middle of a line, can not be used, and why?

------ Solution ------------------------------------ --------

exception see detailed log ah
------ reference ------------------- --------------------
use setBackground (Drawable) instead,
for setBackground method ah
hit horizontal explanation
outdated methods, should have been gas, but for compatibility with previous versions, or take care of some of the old users, or retained.
can still be used, preferably with alternative function setBackground use
------ reference ----------------------- ----------------


or wrong, the error Call requires API level 16 (current min is 8): android.widget.ImageButton # setBackground you look at what happens
---- - reference ---------------------------------------
I found the problem, is the minimum version is too low, but I changed to 16 after the procedure, while there is no problem, but when running on the phone out of the question, showing encounter "I'm sorry, xxxx has stopped running" What is this rhythm, who can help I answer
------ reference -------------------------------------- -
program problems windows did not have any questions, speed god answer, thank
------ reference -------------------- -------------------

exception see detailed log ah  
learn joy to own one, had not yet learned to see the log,
------ reference --------------------- ------------------
machine's version is too low to put this function is not supported setbackground

Android sqlite how to create and play a database in the specifiedpath

The default is the package / database / test.db
SQLiteDatabase db = openOrCreateDatabase ("test.db", Context.MODE_PRIVATE, null);

I want to change the path to
/ mnt / sdcard / helloworld / test.db
can do it
------ Solution -------------------------------- ------------
this hope useful to you , you can store and read directional positions
http://blog.csdn.net/zcljy0318/article/details/7299223
------ Solution ------------------- -------------------------
private File xx = new File ("/ sdcard / wwq / cs.db") ;/ / specify the database path
private SQLiteDatabase sql;
sql = SQLiteDatabase.openOrCreateDatabase (xx, null);
Cursor csxx = sql.rawQuery ("SELECT JSH, JSBH, URL FROM CSXXB", null);
------ reference -------- -------------------------------

great God to ask, he said the article "SQLiteOpenHelper.java ) this class, create a database file path is used for incoming contex of getDatabasePath , this can not be modified ( at least I did not find ) . "
If the same security in two ways , I still use the default path to good
give suggestions , thank you

[Android] ExpandableListView an incredible problem! ! !

me first say that my project scenario: I have such a requirement, slide to the right ExpandableListView the Child, Child of dynamic display [Delete] button .
This is my Child node layout code:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal" >
    <TextView
        android:id="@+id/textChildTitle"
        android:text="No Data"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
       
        android:paddingTop="5dp"
        android:paddingBottom="5dp"
        android:paddingLeft="40dp"
        android:layout_gravity="left|center_vertical" />
    <TextView
        android:id="@+id/textChildMoney"
        android:text="No Data"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:paddingRight="10dp"
        android:gravity="right|center_vertical" />
    <Button
        android:id="@+id/btnDel"
        android:text="删除"
        android:textColor="@android:color/white"
        android:textSize="10dp"
        android:background="@drawable/btn_delete_x"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:focusable="false"
        android:layout_gravity="right|center_vertical"
        android:visibility="gone" />
</LinearLayout>

The first two are display data, and finally a Button is the delete button, the default is not displayed. When I was at the interface above the slide when the slide position to obtain the View, and then to get through findViewById Button, Button to display the status of the final set, the code is as follows:

//获取手指开始按屏幕的位置和最后抬起手指的位置
int pos1 = this.elv.pointToPosition((int)e1.getX(),(int)e1.getY());
int pos2 = this.elv.pointToPosition((int)e2.getX(),(int)e2.getY());

//先判断是否触发Child的delete事件
//如果起始位置【pos1】和结束位置【pos2】是在同一个【Child】并且这个【Child】的位置有效
//并且滑动距离大于100px,则触发Delete
if (pos1 > -1 && pos1 == pos2 && (e2.getX() - e1.getX() > 100) && (e2.getX() - e1.getX() < 200)){
        //获取当前Child的【Delete】按钮
Button btnDel = (Button)elv.getChildAt(pos1).findViewById(R.id.btnDel);
if (btnDel != null){
btnDel.setVisibility(View.VISIBLE);
btnDel.setText("删除"+ pos1);        //我将当前所在的位置【Pos1】写到按钮上面,方便调试
btnDel.setOnClickListener(new View.OnClickListener() {

@Override
public void onClick(View v) {
Toast.makeText(MainActivity.this, "POS:" + ((TextView)((View)v.getParent()).findViewById(R.id.textChildMoney)).getText(), Toast.LENGTH_SHORT).show();

}
});
Log.i("BTN Show","SHOW:" + pos1);
//btnDel.setfo
return true;
}
}

then debug emulator above, the following are debugging steps:
1, which is just to run the program when the state [as shown below]:

2, I start the second set, and in the first slide trigger Delete Child above results as shown []:

As shown above, the button is displayed successfully, and the back shows the [Pos] current location, but I do not understand: why the current position of two?
3, above me in the second group, the second slide [Child above effect is as follows]:

here is normal, position 3 .
4, then, is where the title appeared, I clicked the first group, the first group is expanded, the emergence of a bizarre phenomenon:

shown: second group of second Child button in the display to the first group of a Child above, why is there such a problem?

please help out, here I have studied for a long time, after all, I do not know how it is, first thank you!
------ Solution ------------------------------------ --------
pointToPosition is AbsListView interface obtained is pure location, rather than the first of several groups of several, if you want ExpandableListView using estimated also getExpandableListPosition and getPackedPositionGroup, getPackedPositionChild used in conjunction with job.

second question, estimates and adapter in getChildView realization about, is not there like if (convertView == null) else like this, you look at the code for the button check processing is not and not only set the display settings hidden
------ reference --------------------------------- ------

For the second question, I really was just a show, not hidden, but I show the current clicked Child of Button, even though I did not hide it, but it should not be another group went off to! This is something I'm confused!
------ reference --------------------------------------- < br> My understanding is that you go through if (convertView == null) ... else ... to create a child view, could the system when calling getChildView originally belong to the second group of the second a first group of the View assigned first, the second and the second group of a re-created, resulting in a phenomenon
------ reference --------- ------------------------------
how not solve the second problem?
------ reference --------------------------------------- < br> demo landlord seeking to learn ah, I also encountered the same interface requirements, the delete button issues sliding kfcve123@163.com
------ reference ------------ ---------------------------
landlord, hello, can ask my ontouch events see hear MotionEvent. ACTION_MOVE. Can not slide, ask if they can give to help it?
------ reference --------------------------------------- < br>
I ask you to complete, and I have the same needs, can help me do
------ reference ---------------- -----------------------

I ask you to complete, and I have the same needs, the ability to do a favor  
Custom months ExpandListView inherited from the parent class, and then rewrite the two interfaces implement this interface in the activity