2013年12月4日星期三

android in the dialog pop-up soft keyboard problem

I show the activity in a dialog, in this dialog with an input box , click on the input box to enter .
I hope the input box after clicking out of the soft keyboard to enter data via the soft keyboard , but no pop-up soft keyboard , only physical keyboard input ,
have encountered this problem , help
------ Solution -------------------------- ------------------
not done this effect , but I can probably provide an idea:
First you have to click on the pop-up soft keyboard in the input box , then you have to first input box for you to register a click event listener : OnClickListener
Secondly, realize you want to complete the work within the listener , the Internet has many similar examples , like a landlord recommend :
http://aijiawang-126-com.iteye.com/blog/662088

I hope to help you
------ Solution ----------------------------- ---------------
calling view your dialog contained requestFocus () method
------ Solution --------- -----------------------------------
can control your display software disk

if(hasFocus){
((InputMethodManager)getSystemService(INPUT_METHOD_SERVICE)).showSoftInput(view, 0);
}

------ eference ------------------------------------- -

trial in accordance with this method , and calls im.isActive soft keyboard after performing pop ( ) to determine the validity of the soft keyboard , the resulting value is false, horizontal screen , vertical screen under the same results.
------ eference --------------------------------------- < br>
this did not effect
------ eference ------------------------------- --------


Well theoretically feasible , and the second floor of the same idea , but the soft keyboard does not come out , so I was very tangled ==
------ eference - --------------------------------------
here to do their own thing , do not know if it is wrong
started my practice is to define a dialog, inherited from alertdialog, then all of the layout of the inside of his own writing , the button is also used imagebutton, unlike the above comes only display text ( requirements , no way ) , not bombs in this case how the soft keyboard.
The general custom dialog class are inherited from the dialog , layout, and where we can operate only the middle one , where I put a editview, you can pop up the soft keyboard , now proceed to modify the button layout right, hey . . .
Another problem encountered , and share , set editview in popupwindow in time, but also can not eject the soft keyboard , but you can get through requestfoucs functions can focus .

------ eference ------------------------------------ ---
Finally , to solve the problem
approach is: the layout has not changed , the layout of the dialog on by the layout to load
custom class is inherited from the dialog , and rewrite the constructor with an int , this parameter is used to load the dialog topics
then define the theme string.xml
code is as follows :
<style name="dialog" parent="@android:style/Theme.Dialog">
<item name="android:windowFrame">@null</item><!--边框 -->
<item name="android:windowIsFloating">true</item><!--是否浮现在activity之上 -->
<item name="android:windowIsTranslucent">false</item><!--半透明 -->
<item name="android:windowNoTitle">true</item>
<item name="android:background">@android:color/black</item>
<item name="android:windowBackground">@null</item>
<item name="android:backgroundDimEnabled">false</item><!--模糊 -->
</style>


------ eference ------------------------------------ ---
landlord, how to achieve ? did not understand Yeah , ask
------ eference ---------------- -----------------------
did not see is how to solve the problem
------ eference ----- ----------------------------------


Customize dialog, inherited from the Dialog class ( rather than alertdialog), when rewriting with constructor theme , then you want to generate dialog , using the constructor to construct a dialog .
theme code posted on the 8th floor .
------ eference --------------------------------------- < br>

my testing and understanding :

Let's Talk is AlertDialog, where the landlord 's solution is to abandon AlertDialog this layer , directly inherited Dialog ...

After my test , really OK. . . In fact , no theme landlord directly with Dialog default theme , the soft keyboard pops up normally . . Test code is as follows :
LayoutInflater inflater = (LayoutInflater) getSystemService (LAYOUT_INFLATER_SERVICE);
mLayout = (LinearLayout) inflater.inflate (R.layout.alert_add_new_member, null);

Dialog mDialog = new Dialog (CustomAlertDialog.this);
mDialog.addContentView (mLayout, new LinearLayout.LayoutParams (-2, -2));
mDialog.show ();

So, what with the landlord irrelevant . . .

However, the difference between the landlord and the default theme in theme :
true
default theme is no above this , the landlord added this . .

default theme given that no property , leading to the pop-up dialog box input method with some overlap , it is difficult to see .
add this attribute , the pop-up dialog box does not appear input method and overlap one last look , patchwork. . The experience very comfortable. .

So , we proposed a custom dialog , the best plus true






------ eference ------------------------------------ ---
make up :

1 do not need to customize a subclass inherits Dialog . . Dialog directly use the system on the line . . .
2 does not need to customize what the theme, the default theme on it . . . . . . . . . . . . . . . .

=========================== end quote === =========================

------ eference ------------------------------------ ---
just encountered this problem and found to this paste . I am also a custom Dialog inherited from AlertDialog, there is no way the pop-up soft keyboard , only changed one place , inherited from the dialog, the soft keyboard came out. I guess AlertDialog source code in itself has a soft keyboard is disabled because AlertDialog itself is not the input box , android intention is to allow us time to custom dialog inherited from Dialog.
------ eference --------------------------------------- < br> I went to google up , google says is very likely because of the XML EditText added a , get rid of it, you can use a method similar to the first reply , wrote in setOnFocusChangeListener inside , at least I was like ,
------ eference ----------------------------------- ----
or # 14 to say the phrase , put into inherited from AlertDialog inherited from Dialog on Ok, so we must solve the problem is simple, the top one !
------ eference --------------------------------------- < br> there is a way :
before calling the show method first call setView (layout), show after calling window.setContentView (layout), two Layout layout should be the same .

AlertDialog ad = new AlertDialog.Builder (context) create ().;
ad.setView (ManagerDialogLayout_.build (context, ad));
ad.show ();
Window window = ad.getWindow ();
window.setContentView (ManagerDialogLayout_.build (context, ad));
------ eference -------------------- -------------------
can read the official document : http://developer.android.com/reference/android/app/Dialog.html
One of the paragraphs :
ote:. Activities provide a facility to manage the creation, saving and restoring of dialogs See onCreateDialog (int), onPrepareDialog (int , Dialog), showDialog (int), anddismissDialog (int). If these methods are used, getOwnerActivity () will return the Activity that managed ; this dialog.

Often you will want to have a Dialog display on top of the current input method, because there is no reason for it to accept text. You can do this by setting theWindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM window flag (assuming your Dialog takes input focus, as it ; the default) with the following code:


getWindow (). setFlags (WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM,
WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM);
Also: In order to prevent the pop-up input to the background behind the squeeze deformation , where you can add Manifest :
android: windowSoftInputMode = "adjustPan | stateHidden"

Hey I was so resolved !

[Android] qt how to obtain post-layout control size

Hello everyone :
I want to use QGraphicsView + QGraphicsScene combination displayed on the screen multiple waveforms.
so I use this function to create :
QGraphicsView * createView ()
{

QGraphicsView * view = new QGraphicsView ();
int width = view-> width (); / / / <==== width here is Qt default width , the width is not a good layout
int height = view-> height ();

view-> setSceneRect (0,0, width, height);
MyGraphicsScene * scene = new MyGraphicsScene (width-10, height-10, view);
scene-> setBackgroundBrush (Qt :: black);
scene-> createScale (5,5);
view-> setScene (scene);
return view;
}

But I like this create, find , Qt default width and height are the width and height , is not I good width and height of the layout , may I ask how I know after a good width and layout the height of it . Thank you !


------ Solution ------------------------------------ --------
deal with this problem in resizeEvent where you can get the right size.
------ eference --------------------------------------- < br> setMaximumSize and setMinimumSize set the size of the control , and then layout. SetMinimumSize with setMaximumSize and set the control maximum and minimum width and height are equal, then the control will not change with the size of your window changes in the layout
------ eference --------- ------------------------------
Oh, thank you reply , I mean : I hope I have a window with controls size changes, such as a control me , put two controls , so they are of equal size , if two rows of two columns of four to put the same controls , so they arranged doubled after narrowing equal .


this is my painting this control when he needs to know the actual size of the screen , so I can only further paintings, may actually I do not know, how do I ask such , thank you !
------ eference ---------------------------------------
Okay, so , thank you . Results posted .

[Android] Neighborhoods QListWidget how to achieve multi-column !

check the afternoon of Qt documentation , Leng Shimo find the function set QListWidget multi-column display , only to set the number of rows or something. The landlord did not want to use QTabelWidget, so there is no way to ask you can achieve this functionality.
saying the landlord also feel that they have not simply packaged controls , have custom QListWidget, this is simply regret , but I am curious landlord ah , alas , curiosity killed Pathwalker !


------ Solution - -------------------------------------------
QTableWidget t;
t.setColumnCount (5);
------ Solution --------------------- -----------------------
setModelColumn (int column)
------ Solution ---- ----------------------------------------
not say , QListView than QListWidget greater flexibility , QListWidget achieve is to make the application simple and straightforward price is applicable where there is no QListView so extensive .

mvc method , you can refer to my http://blog.csdn.net/rabinsong/article/details/8452946
------ eference ---------- -----------------------------


Keke , QTableidget I know , but I just wanted to try to use QListWidget ...

------ eference - --------------------------------------

this can set it? Why do I use the afternoons ListWiget-> setModelColumn (5); did not respond. . . Or add the item in question ? How do you add the item to the second column of it ? No matter how , I can only add the item in the first column . . .

------ eference - --------------------------------------
replaced it with QTableWidget , QListWidget not provide this function , you can only display one column

Or you use qlistview to achieve it
------ eference ----------------------------- ----------
under QListview can not say how to achieve it ? Presumably inherited from QWidget QListView, QListView can be achieved , QListWidget should be able to achieve it , QListview is not by setModel () to set the Model to achieve it ?
------ eference --------------------------------------- < br> QListWidget with multiple layouts in a QWidget above everything OK
------ eference -------------------------- -------------


Well, good .
------ eference --------------------------------------- < br>

-, this way I would have thought , but really too fell a point, because relevant data even more than one property , then the display is really bad to be so troublesome ~ ~ with QListWiget, might as well go back to QTableWidget ~


------ eference - --------------------------------------

  
-, this way I would have thought , but really too fell a point, because relevant data even more than one property , then the display is really bad to be so troublesome ~ ~ with QListWiget, might as well go back to QTableWidget ~   
  
    
know QtableWidget Well ? Do not you know QListWidget is linear it?
------ eference --------------------------------------- < br> try setWrapping (true)

[Android] the problem can not connect wifi direct

 This post last edited by the download821106 on 2012-07-09 15:37:39
description of the phenomenon : .
1 enabled wifi direct on the board and manually create a group, through the command line, this information is as follows :
# wpa_cli status ;
Using interface 'wlan0'
bssid = 00:73:13:0 d: 13: e9
ssid = DIRECT-Fy
id = 0
mode = P2P GO
pairwise_cipher = CCMP
group_cipher = CCMP
key_mgmt = WPA2-PSK
wpa_state = COMPLETED
ip_address = 192.168.49.1
p2p_device_address = 00:73:13:0 d: 13: e9
address = 00:73:13:0 d: 13: e9

# wpa_cli p2p_get ;
Using interface 'wlan0'
nFnkmc0J

# ps
**** found no available dhcp server is running ( with wifi function only when there is a dhcpcd client running , open direct dhcpcd also been stopped ) ******

2. After entering the password authentication can not get through to the ip address it through the phone's wifi capabilities ( phone does not support direct function ) connected DIRECT-Fy hotspot , always show " Get Ip address ... "

question :
1. was not the two devices can support direct connectivity ?
2. as gourp owner 's direct client devices need to start a dhcp server , and the other end should start dhcp client to connect ?
3. Which brothers have the android can run dhcp server and dhcp client, please send a help to download821106@163.com

------ Solution ------------------------------------ --------
good esoteric stuff , do not know , but 4.0 is said to have provided the Local Area Network functionality .
------ Solution --------- -----------------------------------
1. was not the two devices can support direct Internet ?
certainly
2. as gourp owner 's direct client devices need to start a dhcp server , and the other end should start dhcp client to connect ?
If supported , architecture already provides a good interface, no bother
3. Which brothers have the android can run dhcp server and dhcp client
wifidirect major role as similar to Bluetooth , you want to replace the Bluetooth function , no need to get so complicated
------ eference ---------------- -----------------------
thank join in !
------ eference --------------------------------------- < br> their own roof
------ eference ----------------------------------- ----
solve the problem, get less because the group Ip address client does not start dhcp
------ eference ----------------- ----------------------
Will dhcp client service group is not trying to run a separate program that supports dhcp job ?
Thank
------ eference ----------------------------------- ----
ask the landlord , sdk comes with the wifidirect the demo is how ah , debugging , when no law find peers , and how the network needs it bad environment ? I'm debugging with PC open a hotspot ( driver wizard ) , then let two mobile phones even this hot , this is not to ensure that the two sets of phone connected to the same network do ? But this , find peers that have nothing happened , and simply can not find. . . Is how it happened ?

[Android] App a very good application development platform for everyone to share , oh ! ! !

First, the first APP talent base --- build future growth Daren App

China 's first campus -oriented developers and Internet enthusiasts to build a full open App Talents base - Baidu formally launched the development of learning communities . Let your App here to get more people's attention , and more passionate lovers counterparts collision sparks .



Second, several modules ---- subdivision area , specialization .
1, course modules , real-time online publication , course information under line, the integration of Internet technologies, products rich in theme , polymerization Baidu senior lecturer , shared Internet resource advantages , include authoritative teaching resources , can be made to upload your course , to build part of your personal brand is the best learning platform developer campus .
2, application modules , learning applications of others, develop their own applications , upload, download step, developers here sway talent, passion collision , the Internet Daniel answering your problem-solving , so here mature your App grow, developers turned gorgeous campus transformation platform.
3, activity modules, seamless realize the roles were reversed , both the initiator and a participant , exciting activities in one hand. "I am the master of the community ," " and your application high earthshaking " two popular activities have been started . Sign up to become Baidu to develop learning community members, recommended named " technical topics I am most interested in ," show " My Applications" , a chance to win lucrative gifts and party bonuses.
4, technology exchange module Recommend exciting new Internet technologies and developer original articles , providing a one-stop multi-dimensional multi-thematic reading, both the learner, who is also answered in mutual exchange, constantly collision sparks , is the Internet technology products lover communication platform .
5, " My Community " module , look for like-minded friends , recording bit of community life , Fun interactive group topic is the development of learning communities in Baidu users stronghold .


Third, the benefits (with integral donated gifts picture )
participate in activities, was integral to win gifts.





------ Solution ------------------------------------ --------
looked up ~ ~ very good yo ! ! !
------ Solution - -------------------------------------------
Haha , my several applications are done uploading the
------ Solution -------------------------------- ------------
saw ~ ~ is a good platform ~
------ eference ---------------- -----------------------
attach links friends ~ ~ like pots faithful , go and see ! ! http://ctech.baidu.com/
------ eference ---- -----------------------------------
App as a senior research engineer , I am very careful to edit the article said: This is misleading app development needs of enterprises have ! Why ? First, a complete package including both app and app content management system. Second , app only client, then the server is running on the server , to provide data support. Third , the template tools that extend the biggest drawbacks to upgrade unfavorable , although some templates to meet the needs of the present stage , but with the development , simply can not meet the diverse business needs ! But the app has been extended out, would cause significant loss of business , including the time and effort to promote cost losses.
A good app product , to carefully designed product managers , artists of color , code developers, test engineers meticulous testing to go online , after all, is software engineering ! If you want to really do app, please search for " Shenzhen only smart" contact engineer for you to customize , 18680324376 Yang !

[Android] QT in readyread () does not receive a signal problem

In QT Creator wrote a program when the receiving end , use a connect (receiver, SIGNAL (readyRead ()), this, SLOT (processPendingDatagram ())); But this cargo did not respond , I see a lot of online search when people say you can use WaitForreadyread () resolved to ask for advice how to use this function ? ? ? ? ?
------ Solution ---------------------------------------- ----
connect successfully did . .
If it fails . When the output window has run output debugging information. .
will explain where in the end failed.

------ Solution ------------------------------------ --------
pServer = new QLocalServer (this);
connect (pServer, SIGNAL (newConnection ()), this, SLOT (rxNewConnection ()));
pServer-> listen (TEST_PROCESS_NAME);


void rxNewConnection ()
{
pSocket = pServer-> nextPendingConnection ();
if (pSocket! = NULL)
{
connect (pSocket, SIGNAL (readyRead ()), this, SLOT (rxMessage ()));
connect (pSocket, SIGNAL (disconnected ()), pSocket, SLOT (deleteLater ()));
}
}
------ eference ----------------------------------- ----
with a bit bool b = connect (receiver, SIGNAL (readyRead ()), this, SLOT (processPendingDatagram ())); however shows b 's value is the true way . . . .


------ eference ------------------------------------ ---
code you have a problem. This signal will certainly trigger . But the question is will trigger multiple times. Therefore, data may be read at a time insufficiency.
------ eference --------------------------------------- < br> I also encountered a similar problem ! ! !
connect (udp, SIGNAL (readyRead ()), this, SLOT (receive_message_slot ()));
slot function I wrote it myself , but it looks like readyRead () This signal has not been emitted ah ! ! !
I gave a udp message
but also bind udp success
is no reaction ah ! ! !
Great God seeking to explain ~ ~ ~
------ eference ------------------------------ ---------
solve the problem , in windows, the system itself requires a wait , but in linux you do not need , so there is no waiting to add the statement section , then under windows is unable to transmit signals the . Currently I understand it this way , if where there are problems, please enlighten our great God . . . . .

android listview rounded borders and in connection

Recently used the listview, need rounded corners, the Internet also find a lot of routine , but found a problem, have no border . I try to add a border , the results were significantly higher than the middle part of the border traveled to coarse . Also tried to use linearlayout piled a list , it is also a lot of rough edges in the middle . How to deal with the border relatively good ? There are two listview I want to use to connect to up and down together , also found little difficulty , please let us know , the first in this thank you!
------ Solution ---------------------------------------- ----
do not know what to say, to be rounded , not affixed to a background thing ?
------ Solution ---------------------------------------- ----
9.png or xml control can certainly meet your needs
------ Solution ------------------- -------------------------
Internet look a lot I remember setting
in xml --- --- Solution --------------------------------------------
shape

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


shape should be
------ Solution --------------------------------- -----------

learn how to use search listview fillet
https://www.google.com.hk/search?q=listview% E5% 9C% 86% E8% A7% 92 & aq = f & oq = listview% E5% 9C% 86% E8% A7% 92 & aqs = chrome.0.57.9665j0 & sourceid = chrome & client = aff-cs-360chromium & ie = UTF-8
------ eference ----------- ----------------------------
there ah, at the top and the bottom two , when clicked fillet there are preset at the color , you can not get rid of ah. . . .
------ eference --------------------------------------- < br>
  The reply was deleted administrator at 2013-11-26 10:28:58

------ eference ------------------------------------ ---

no art . . . . I used the Layer-list add shape to solve ! Thank you for your answer !
------ eference --------------------------------------- < br>
I used the Layer-list add shape to solve ! Thank you for your answer !
------ eference --------------------------------------- < br>
Yes, I use Layer-list add shape to solve ! Thank you for your answer !

[Android] GridView hide show again lead to the disappearance

gridview Today when doing the project , you need to be hidden away gridview that gridview.setVisibility (View.GONE); hide gridview before there is data ( there are three Item), but when I put gridview again setVisibility (View.VISIBLE) of time , gridview 's Item not displayed, even gridview share layout are gone, this is what happens ?



------ Solution ------------------------------------ --------
the bar code
------ Solution - -------------------------------------------
need the code, not just the layout
------ Solution ------------------------------------- ------- display properties
You can try to use that control to show equal true, to see if I can reach it shows , in the background ah
------ eference --- ------------------------------------
code is relatively simple ,
button1.setOnClickListener (new OnClickListener () {
gridView.setVisibility (View.GONE);
});

button2.setOnClickListener (new OnClickListener () {
gridView.setVisibility (View.VISIBLE);
});
before
gridView hidden item is displayed , and then display the hidden item and then they would not show up .

Here are some of the layout file :
android: layout_width = "fill_parent"
android: layout_height = "fill_parent"
android: orientation = "horizontal">

android: layout_width = "fill_parent"
android: layout_height = "fill_parent"
android: layout_weight = "3"
android: layout_margin = "30dip"
android: orientation = "vertical">
android: id = "@ + id / hall_gridView"
android: layout_width = "fill_parent"
android: layout_height = "fill_parent"
android: drawSelectorOnTop = "true"
android: gravity = "center"
android: horizontalSpacing = "0dip"
android: listSelector = "@ drawable / lottery_item_bg"
android: nextFocusLeft = "@ + id / main_tab_hall"
android: nextFocusDown = "@ + id / main_tab_hall"
android: nextFocusUp = "@ + id / top_exit"
android: numColumns = "1"
android: scrollbars = "none"
android: stretchMode = "columnWidth"
android: verticalSpacing = "30dip" />

android: layout_width = "fill_parent"
android: layout_height = "fill_parent"
android: layout_weight = "5">
/>



------ eference ------------------------------------ ---
now to get rid of , thank you. The problem is due to the layout .

because in the past I wrote layout is a linear layout which includes two linear layout , each linear layout you have heavy weights (layout_weight), must be added to the parent linear layout attributes : android: weightSum = 8 ( I was here 8 ) , otherwise gridView in hiding after the show will be another layout overwritten. Specific reasons unclear. .



android4.0 how full screen

Found online methods are tried , no effect
getWindow () getDecorView () setSystemUiVisibility (View.SYSTEM_UI_FLAG_HIDE_NAVIGATION)..;
getWindow () getDecorView () setSystemUiVisibility (View.STATUS_BAR_HIDDEN)..;
getWindow () getDecorView () setSystemUiVisibility (View.SYSTEM_UI_FLAG_LOW_PROFILE)..;

The three also tried.

XML also tried setting

android: theme = "@ android: style / Theme.NoTitleBar.Fullscreen"
The 2.2 effective 4.0 completely ineffective .

have brothers Manga
------ Solution ----------------------------- ---------------
getWindow () getDecorView () setSystemUiVisibility (View.SYSTEM_UI_FLAG_SHOW_FULLSCREEN)..;
Try this , then do not go to XML inside the set , otherwise the situation will be invalid code
------ Solution ---------------- ----------------------------

    @Override
    public void onCreate(Bundle savedInstanceState) {
 
    
        super.onCreate(savedInstanceState);
        this.getWindow().setFlags(LayoutParams.FLAG_FULLSCREEN,  LayoutParams.FLAG_FULLSCREEN);         
        setContentView(R.layout.activity_main);

        .....
    }

------ Solution ------ --------------------------------------
estimate is you add the wrong place , added before setContentView (R.layout.xxx), added after it not ,
------ Solution ---------------------- ----------------------
http://blog.csdn.net/vrix/article/details/7823145

you try the last method
------ Solution ----------------------------- ---------------
not to rename SystemUI.apk, this will cause a lot of problems. Before I realized that renumbering source. The height of the StatusBar to 0 , so there is not any problem
------ Solution ------------------------ --------------------
refer http://bbs.imp3.net/thread-10603387-1-1.html
--- --- eference ---------------------------------------
yesterday did not ROOT,
then tried again today ROOT
or not.
Ladies and gentlemen, there is no other way
------ eference ---------------------------- -----------
getWindow () getDecorView () setSystemUiVisibility (View.STATUS_BAR_HIDDEN)..;
getWindow () getDecorView () setSystemUiVisibility (View.SYSTEM_UI_FLAG_LOW_PROFILE)..;
Both only temporarily hidden, but still black bars

getWindow () getDecorView () setSystemUiVisibility (View.SYSTEM_UI_FLAG_HIDE_NAVIGATION)..;
This completely ignore

getWindow () getDecorView () setSystemUiVisibility (View.SYSTEM_UI_FLAG_SHOW_FULLSCREEN)..;
This system is not publicly SYSTEM_UI_FLAG_SHOW_FULLSCREEN = 4,
getWindow () getDecorView () setSystemUiVisibility (4)..;
completely ignore


this.getWindow () setFlags (LayoutParams.FLAG_FULLSCREEN, LayoutParams.FLAG_FULLSCREEN).;
This completely ignoring
------ eference --------------------------------- ------
ROOT after I tried to SYSTEMUI.APK renamed
In this way, the system does not start after following SYSTEMBAR, but the situation appeared with VIDEOVIEW is a blank screen
help ah
------ eference ---------------------------------- -----
requestWindowFeature (Window.FEATURE_INDETERMINATE_PROGRESS);
requestWindowFeature (Window.FEATURE_NO_TITLE); Try again
added onCreate () method inside setContentView (R.layout.xxx) above ;
------ eference -------------- -------------------------
completely ignoring what is the meaning ?
------ eference --------------------------------------- < br>
programs completely ignore this line of code
------ eference ---------------------------- -----------


requestWindowFeature (Window.FEATURE_NO_TITLE);
This line can work.

but the following softkeys or in the


------ eference ------------------------------------ ---

this has been tried
------ eference -------------------------- -------------
this.getWindow () setFlags (LayoutParams.FLAG_FULLSCREEN, LayoutParams.FLAG_FULLSCREEN).;

You put in the position right? Seems to have put setContentView before
------ eference --------------------------------- ------

is
------ eference -------------------------- -------------
own top up
------ eference --------------------- ------------------
Thank you for your help
rename SYSTEMUI.APK is still used to solve
have time to study other methods it
first task
------ eference --------------------------------- ------



getWindow () getDecorView () setSystemUiVisibility (View.SYSTEM_UI_FLAG_SHOW_FULLSCREEN)..;
This system is not publicly SYSTEM_UI_FLAG_SHOW_FULLSCREEN = 4,
disclose the value of the 4.1 version
------ eference ---------------------------- -----------
go on top . . . The same question . . . All kinds are tested or not ah

------ eference ------------------------------------ ---
top. . . . . there is a need
------ eference ------------------------------------ ---
I would estimate the landlord is taking the tablet 's code , is that, no matter how flat is set up is that the status bar into a small point, such as : View pictures when playing videos or when I was test : On 4.0, if a source can be resolved:
solution is as follows :
1.PhoneWindowManager.java file
function setInitialDisplaySize () Set :
mStatusBarHeight = 0;
2. in systemui application code, for
TabletStatusBar.java files for :
mStatusBarView for processing, then solve all the problems :
mStatusBarView.setVisibility (View.VISIBLE); or
mStatusBarView.setVisibility (View.GONE);

------ eference ------------------------------------ ---
getWindow () getDecorView () setSystemUiVisibility (8)..;
can Oh
on 4.0

android can set the style in the program code it? ( not in xml inside setting )

style.xml defined style , how to dynamically change in the program , if you can, please tell me the way
not , then please tell me if the app peels are probably how words work? I want to replace the background ( like the picture ) font size, color and so on ...
------ Solution ------------- -------------------------------
of course myself , when it can be set up in onCreate , setStyle () < br> ------ Solution ----------------------------------------- ---
whether to change the background color, font or something
first to get traded component,
such as fonts , assuming he is TextView:
1, get this TextView component: TextView tv = (TextView) findViewById (R.id.tv);
2, then tv.setTextSize (float) on the line this API , the API -specific information in the official website you can search
------ Solution ---------- ----------------------------------
is , oh , get that it will be able to carry out the component id modify ah
------ Solution -------------------------------------- ------
peels , equivalent app 's theme, and a variety of fine control , it is necessary to view the document , like textSize such , have a ready property. theme trimmer is the overall background color , borders, whether the title bar and other effects.

------ Solution ------------------------------------ --------
I said decisively not, before heading for a dynamic, transparent bar style , out of the bruised and battered , and finally changed the design to get it ......
style defined in XML which later can only get , can not be set online to find a lot of information but also did not materialize.

Of course, if there is then achieved great God , seeking implementation ......
------ Solution ---------------------- ----------------------

LinearLayout buttons = (LinearLayout)findViewById(R.id.buttonContainer);

LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);

inflater.inflate(R.layout.mybutton, buttons);


mybutton.xml:
<?xml version="1.0" encoding="UTF-8"?>
<Button xmlns:android="http://schemas.android.com/apk/res/android" 
        android:id="@+id/mainButton"
        style="@style/standardButton"
/>

------ eference ------------ ---------------------------
specific point, that method ? For example, I want to set EditText or TextView such as font size, color , etc. , using the method set ?
------ eference --------------------------------------- < br> Well , I was like , directly controlled by Theme overall style , if there exists a special individual settings , such as a button or directly to the textview style, which would also lay the foundation for future expansion , it is thought the style , and code logic separate , give the site css and html like ,
There is no way you can set a specific style direct it? If the direct write code that directly speak to the three upstairs to find the ID can be set , what can increase the skin after too cumbersome , you can set the style is not it? No, then how to do a better separation of code ? After the skin is easier to add ? Thank you again make a suggestion it !
------ eference --------------------------------------- < br> If the code is not directly set style
all styles extracted :
now probably thinking is : The Theme of the same type can be mounted under a few style ( a theme style have multiple button you can have more than you want to mount the Style for select ) android: buttonStyle like this . . Then I just need to select the appropriate code in the box , you can directly replace all styles , , so the idea feasible? Do tricks like him make a suggestion ah ~ !
------ eference --------------------------------------- < br> Results posted Results posted , this has to get a ~ whirring !
------ eference --------------------------------------- < br> seeking the truth ah !
------ eference --------------------------------------- < br> how to solve the landlord seeking the truth Thank
------ eference ------------------------- --------------
encountered the same problem ! How to solve the landlord ? Thank you

------ eference ------------------------------------ ---


strongly BS, TM you have come to ask questions , solve even the programs are not posted, engage JB wool , Lv egg stuff

I checked , it should be this:
textView.setTextAppearance (context, R.style.normal_button);
------ eference ----------------------- ----------------
contempt landlord . . .
------ eference --------------------------------------- < br> ah common contempt
------ eference ------------------------------- --------
specially Login to despise the landlord

[Android] Multi-point gesture recognition to achieve

API google provided, there is a class , we are familiar with , GestureDetector. Use it, we can identify the user usually use gestures. However , this class does not support multi-touch ( do not think anyone could google in a few fingers on the screen, use gestures it ~ ) , however, and my friends do together recent App, indeed used a multi-point gestures ( mainly onScroll and onFling two gestures ) , so I took this class to expand a bit, to achieve so that each followed by a number of controls to achieve the effect of dragging with your finger and sliding .
By the way, we should all know, Android3.0 after allocation mechanisms Android touch events and previous versions are different . Starting with 3.0 , touch Messaging users on different operating controls do not interfere with each other to produce , touch the message will be assigned to a different control on touchListener processing . And
In previous versions, all touch messages will be routed to the first encounter of the screen controls the operation of the fingers of touchListener processing , that is, is there such a contradictory phenomenon:
at the interface have A, B, C three controls , and then , when you first use the index finger and hold the A, and then again with the middle finger and ring finger ( Well , other fingers also, do not middle finger or ring finger cares ) Hold B, C. And moving means which , when the ring finger , B and C can not receive the ACTION_MOVE message and the received message is A. In version 3.0 and above , this problem does not exist .
use the following class , can be achieved from the 2.2 to 3.2 gesture recognition platform compatible .
began paste code :
package com.finger.utils;

import java.util.ArrayList;
import java.util.List;

import android.content.Context;
import android.os.Handler;
import android.os.Message;
import android.view.MotionEvent;
import android.view.VelocityTracker;
import android.view.ViewConfiguration;

public class MultiTouchGestureDetector {

@SuppressWarnings("unused")
private static final String MYTAG = "Ray";
public static final String CLASS_NAME = "MultiTouchGestureDetector";

/**
 * 事件信息类 <br/>
 * 用来记录一个手势
 */
private class EventInfo {
private MultiMotionEvent mCurrentDownEvent; //当前的down事件
private MultiMotionEvent mPreviousUpEvent; //上一次up事件
private boolean mStillDown; //当前手指是否还在屏幕上
private boolean mInLongPress; //当前事件是否属于长按手势
private boolean mAlwaysInTapRegion; //是否当前手指仅在小范围内移动,当手指仅在小范围内移动时,视为手指未曾移动过,不会触发onScroll手势
private boolean mAlwaysInBiggerTapRegion; //是否当前手指在较大范围内移动,仅当此值为true时,双击手势才能成立
private boolean mIsDoubleTapping; //当前手势,是否为双击手势
private float mLastMotionY; //最后一次事件的X坐标
private float mLastMotionX; //最后一次事件的Y坐标

private EventInfo(MotionEvent e) {
this(new MultiMotionEvent(e));
}

private EventInfo(MultiMotionEvent me) {
mCurrentDownEvent = me;
mStillDown = true;
mInLongPress = false;
mAlwaysInTapRegion = true;
mAlwaysInBiggerTapRegion = true;
mIsDoubleTapping = false;
}

//释放MotionEven对象,使系统能够继续使用它们
public void recycle() {
if (mCurrentDownEvent != null) {
mCurrentDownEvent.recycle();
mCurrentDownEvent = null;
}

if (mPreviousUpEvent != null) {
mPreviousUpEvent.recycle();
mPreviousUpEvent = null;
}
}

@Override
public void finalize() {
this.recycle();
}
}

/**
 * 多点事件类 <br/>
 * 将一个多点事件拆分为多个单点事件,并方便获得事件的绝对坐标
 * <br/> 绝对坐标用以在界面中找到触点所在的控件
 * @author ray-ni
 */
public class MultiMotionEvent {
private MotionEvent mEvent;
private int mIndex;

private MultiMotionEvent(MotionEvent e) {
mEvent = e;
mIndex = (e.getAction() & MotionEvent.ACTION_POINTER_ID_MASK) >> MotionEvent.ACTION_POINTER_ID_SHIFT;  //等效于 mEvent.getActionIndex();
}

private MultiMotionEvent(MotionEvent e, int idx) {
mEvent = e;
mIndex = idx;
}

// 行为
public int getAction() {
int action = mEvent.getAction() & MotionEvent.ACTION_MASK; //等效于 mEvent.getActionMasked();
switch (action) {
case MotionEvent.ACTION_POINTER_DOWN:
action = MotionEvent.ACTION_DOWN;
break;
case MotionEvent.ACTION_POINTER_UP:
action = MotionEvent.ACTION_UP;
break;
}
return action;
}

// 返回X的绝对坐标
public float getX() {
return mEvent.getX(mIndex) + mEvent.getRawX() - mEvent.getX();
}

// 返回Y的绝对坐标
public float getY() {
return mEvent.getY(mIndex) + mEvent.getRawY() - mEvent.getY();
}

// 事件发生的时间
public long getEventTime() {
return mEvent.getEventTime();
}

// 事件序号
public int getIndex() {
return mIndex;
}

// 事件ID
public int getId() {
return mEvent.getPointerId(mIndex);
}

// 释放事件对象,使系统能够继续使用
public void recycle() {
if (mEvent != null) {
mEvent.recycle();
mEvent = null;
}
}
}

// 多点手势监听器
public interface MultiTouchGestureListener {
// 手指触碰到屏幕,由一个 ACTION_DOWN触发
boolean onDown(MultiMotionEvent e);
// 确定一个press事件,强调手指按下的一段时间(TAP_TIMEOUT)内,手指未曾移动或抬起
void onShowPress(MultiMotionEvent e);
// 手指点击屏幕后离开,由 ACTION_UP引发,可以简单的理解为单击事件,即手指点击时间不长(未构成长按事件),也不曾移动过
boolean onSingleTapUp(MultiMotionEvent e);
// 长按,手指点下后一段时间(DOUBLE_TAP_TIMEOUT)内,不曾抬起或移动
void onLongPress(MultiMotionEvent e);
// 拖动,由ACTION_MOVE触发,手指地按下后,在屏幕上移动
boolean onScroll(MultiMotionEvent e1, MultiMotionEvent e2, float distanceX, float distanceY);
// 滑动,由ACTION_UP触发,手指按下并移动一段距离后,抬起时触发
boolean onFling(MultiMotionEvent e1, MultiMotionEvent e2, float velocityX, float velocityY);
}
// 多点双击监听器
public interface MultiTouchDoubleTapListener {
// 单击事件确认,强调第一个单击事件发生后,一段时间内,未发生第二次单击事件,即确定不会触发双击事件
boolean onSingleTapConfirmed(MultiMotionEvent e);
// 双击事件, 由ACTION_DOWN触发,从第一次单击事件的DOWN事件开始的一段时间(DOUBLE_TAP_TIMEOUT)内结束(即手指),
// 并且在第一次单击事件的UP时间开始后的一段时间内(DOUBLE_TAP_TIMEOUT)发生第二次单击事件,
// 除此之外两者坐标间距小于定值(DOUBLE_TAP_SLAP)时,则触发双击事件
boolean onDoubleTap(MultiMotionEvent e);
// 双击事件,与onDoubleTap事件不同之处在于,构成双击的第二次点击的ACTION_DOWN,ACTION_MOVE和ACTION_UP都会触发该事件
boolean onDoubleTapEvent(MultiMotionEvent e);
}

// 事件信息队列,队列的下标与MotionEvent的pointId对应
private static List<EventInfo> sEventInfos = new ArrayList<EventInfo>(10);
// 双击判断队列,这个队列中的元素等待双击超时的判断结果
private static List<EventInfo> sEventForDoubleTap = new ArrayList<EventInfo>(5);
// 指定大点击区域的大小(这个比较拗口),这个值主要用于帮助判断双击是否成立
private int mBiggerTouchSlopSquare = 20 * 20;
// 判断是否构成onScroll手势,当手指在这个范围内移动时,不触发onScroll手势
private int mTouchSlopSquare;
// 判断是否构成双击,只有两次点击的距离小于该值,才能构成双击手势
private int mDoubleTapSlopSquare;
// 最小滑动速度
private int mMinimumFlingVelocity;
// 最大滑动速度
private int mMaximumFlingVelocity;

// 长按阀值,当手指按下后,在该阀值的时间内,未移动超过mTouchSlopSquare的距离并未抬起,则长按手势触发
private static final int LONGPRESS_TIMEOUT = ViewConfiguration.getLongPressTimeout();
// showPress手势的触发阀值,当手指按下后,在该阀值的时间内,未移动超过mTouchSlopSquare的距离并未抬起,则showPress手势触发
private static final int TAP_TIMEOUT = ViewConfiguration.getTapTimeout();
// 双击超时阀值,仅在两次双击事件的间隔(第一次单击的UP事件和第二次单击的DOWN事件)小于此阀值,双击事件才能成立
private static final int DOUBLE_TAP_TIMEOUT = ViewConfiguration.getDoubleTapTimeout();
// 双击区域阀值,仅在两次双击事件的距离小于此阀值,双击事件才能成立
private static final int DOUBLE_TAP_SLAP = 64;

// GestureHandler所处理的Message的what属性可能为以下 常量:
// showPress手势
private static final int SHOW_PRESS = 1;
// 长按手势
private static final int LONG_PRESS = 2;
// SingleTapConfirmed手势
private static final int TAP_SINGLE = 3;
// 双击手势
private static final int TAP_DOUBLE = 4;

// 手势处理器
private final GestureHandler mHandler;
// 手势监听器
private final MultiTouchGestureListener mListener;
// 双击监听器
private MultiTouchDoubleTapListener mDoubleTapListener;

// 长按允许阀值
private boolean mIsLongpressEnabled;
// 速度追踪器
private VelocityTracker mVelocityTracker;

private class GestureHandler extends Handler {
GestureHandler() {
super();
}

GestureHandler(Handler handler) {
super(handler.getLooper());
}

@Override
public void handleMessage(Message msg) {
int idx = (Integer) msg.obj;
switch (msg.what) {
case SHOW_PRESS: {
if (idx >= sEventInfos.size()) {
// Log.w(MYTAG, CLASS_NAME + ":handleMessage, msg.what = SHOW_PRESS, idx=" + idx + ", while sEventInfos.size()="
// + sEventInfos.size());
break;
}
EventInfo info = sEventInfos.get(idx);
if (info == null) {
// Log.e(MYTAG, CLASS_NAME + ":handleMessage, msg.what = SHOW_PRESS, idx=" + idx + ", Info = null");
break;
}
// 触发手势监听器的onShowPress事件
mListener.onShowPress(info.mCurrentDownEvent);
break;
}
case LONG_PRESS: {
// Log.d(MYTAG, CLASS_NAME + ":trigger LONG_PRESS");

if (idx >= sEventInfos.size()) {
// Log.w(MYTAG, CLASS_NAME + ":handleMessage, msg.what = LONG_PRESS, idx=" + idx + ", while sEventInfos.size()="
// + sEventInfos.size());
break;
}
EventInfo info = sEventInfos.get(idx);
if (info == null) {
// Log.e(MYTAG, CLASS_NAME + ":handleMessage, msg.what = LONG_PRESS, idx=" + idx + ", Info = null");
break;
}
dispatchLongPress(info, idx);
break;
}
case TAP_SINGLE: {

// Log.d(MYTAG, CLASS_NAME + ":trriger TAP_SINGLE");
// If the user's finger is still down, do not count it as a tap
if (idx >= sEventInfos.size()) {
// Log.e(MYTAG, CLASS_NAME + ":handleMessage, msg.what = TAP_SINGLE, idx=" + idx + ", while sEventInfos.size()="
// + sEventInfos.size());
break;
}
EventInfo info = sEventInfos.get(idx);
if (info == null) {
// Log.e(MYTAG, CLASS_NAME + ":handleMessage, msg.what = TAP_SINGLE, idx=" + idx + ", Info = null");
break;
}

if (mDoubleTapListener != null && !info.mStillDown) { //手指在双击超时的阀值内未离开屏幕进行第二次单击事件,则确定单击事件成立(不再触发双击事件)
mDoubleTapListener.onSingleTapConfirmed(info.mCurrentDownEvent);
}
break;
}
case TAP_DOUBLE: {
if (idx >= sEventForDoubleTap.size()) {
// Log.w(MYTAG, CLASS_NAME + ":handleMessage, msg.what = TAP_DOUBLE, idx=" + idx + ", while sEventForDoubleTap.size()="
// + sEventForDoubleTap.size());
break;
}
EventInfo info = sEventForDoubleTap.get(idx);
if (info == null) {
// Log.w(MYTAG, CLASS_NAME + ":handleMessage, msg.what = TAP_DOUBLE, idx=" + idx + ", Info = null");
break;
}
sEventForDoubleTap.set(idx, null);// 这个没什么好做的,就是把队列中对应的元素清除而已
break;
}
default:
throw new RuntimeException("Unknown message " + msg); // never
}
}
}

/**
 * 触发长按事件
 * @param info
 * @param idx
 */
private void dispatchLongPress(EventInfo info, int idx) {
mHandler.removeMessages(TAP_SINGLE, idx);//移除单击事件确认
info.mInLongPress = true;
mListener.onLongPress(info.mCurrentDownEvent);
}

------ Solution ------------------------------------- -------
support that is not easy to write code , thanks for sharing
------ Solution -------------------- ------------------------

------ Solution ------------------------ --------------------
support what the learn ~
------ Solution ------- -------------------------------------
123456789dfghfgjgjk
------ Solution --------------------------------------------
support it , and also learn about
------ Solution ----------------------------------- ---------
mark, thanks for sharing , like this one
------ Solution --------------------- -----------------------
Thank you for sharing , collection, learn !
------ Solution ---------------------------------------- ----

- ----- Solution --------------------------------------------
  The reply was deleted at 2012-08-28 09:10:56 moderator

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

------ Solution ---------------------------------------- ----
woke up was recommended for the first time is recommended , very happy ~
Thank you for your support! ~
------ Solution --------------------------------------- -----
still using the engine to write faster and more convenient
------ Solution ---------------------- ----------------------
multi-point gesture recognition ...... wood have more equipment ah ......
- ---- Solution -------------------------------------------- < br>


landlord using Unity3D Why not try the quick and easy for Android developers to quickly generate cross-platform without any interface APK

powerful UI plug- perfect compression of course also includes software signature
------ Solution ----------------- ---------------------------
good NB said . . . Landlord practitioners have for many years it == !
------ Solution ---------------------------------------- ----
good eh ~
------ Solution ------------------------------ --------------

+1
------ Solution ----------------- ---------------------------
this must be the top !
------ Solution - -------------------------------------------
this logic, when can themselves be
------ Solution ----------------------------------- ---------
this looks very fierce ah

------ Solution ------------------------------------ --------
me that I currently do not ah ps net
------ Solution -------------- ------------------------------

------ Solution ------------------ --------------------------
Thank you for sharing
------ Solution --------- -----------------------------------

you should thank niu Moderator
------ Solution ------------------------------------------ -
ingredient thank
------ Solution --------------------------------- -----------
good stuff, thank you lz
------ Solution -------------------- ------------------------
good, very good
------ Solution -------- ------------------------------------
mark
unnamed passing
------ Solution ----------------------------- ---------------


In fact, I should thank you for your selfless spirit of sharing
------ Solution -------------------------- ------------------
this good !
------ Solution ---------------------------------------- ----


Unity 3D charges , right?
------ Solution ---------------------------------------- ----
master ah , terrible
------ Solution ----------------------------- ---------------
Thank you expert advice
------ Solution ------------------- -------------------------
this looks very fierce ah

------ Solution ------------------------------------ --------
this looks very fierce ah

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

work is one thing , love is one thing, the future is still welcome to discuss issues
------ Solution ------- -------------------------------------
this must be the top ! Android currently studying this stuff , thank LZ a
------ Solution -------------------------- ------------------

+1
------ Solution ------------- -------------------------------
Good , support.
just started learning android, learning various kinds of knowledge .
thank landlord posts .
------ Solution ---------------------------------------- ----
lz write very detailed thank you
------ Solution --------------------- under -----------------------
MARK, may be used in the future !
------ Solution ---------------------------------------- ----
support it , and also learn about
------ Solution -------------------------- ------------------
so long ~ ~
------ Solution --------------- -----------------------------
landlord mighty
------ Solution ------ --------------------------------------
top, landlord, very detailed notes .
------ Solution ---------------------------------------- ----
/ **
* Constructor 2
* @ param context
* @ param listener
* @ param handler
* /
public MultiTouchGestureDetector (Context context, MultiTouchGestureListener listener, Handler handler) {
if (handler! = null) {
mHandler = new GestureHandler (handler);
} else {
mHandler = new GestureHandler ();
}
mListener = listener;
if (listener instanceof MultiTouchDoubleTapListener) {
setOnDoubleTapListener ((MultiTouchDoubleTapListener) listener);
}
init (context);
}


------ Solution ------------------------------------ --------
very good. I top
------ Solution -------------------------------------- ------
Results posted the ~
------ Solution --------- -----------------------------------
Thank you for expert advice !
----- - Solution --------------------------------------------
QPST .2.7.355
------ Solution ----------------------------------- ---------
JAVA everywhere.
------ Solution ---------------------------------------- ----
very nice
------ Solution ------------------------------ --------------
is very good ah
------ Solution ------------------- -------------------------
too strong. . .
------ Solution ---------------------------------------- ----
and single- precision would mean the same?
------ eference --------------------------------------- < br>
	/**
 * 构造器1
 * @param context
 * @param listener
 */
public MultiTouchGestureDetector(Context context, MultiTouchGestureListener listener) {
this(context, listener, null);
}

/**
 * 构造器2
 * @param context
 * @param listener
 * @param handler
 */
public MultiTouchGestureDetector(Context context, MultiTouchGestureListener listener, Handler handler) {
if (handler != null) {
mHandler = new GestureHandler(handler);
} else {
mHandler = new GestureHandler();
}
mListener = listener;
if (listener instanceof MultiTouchDoubleTapListener) {
setOnDoubleTapListener((MultiTouchDoubleTapListener) listener);
}
init(context);
}

/**
 * 初始化识别器
 * @param context
 */
private void init(Context context) {
if (mListener == null) {
throw new NullPointerException("OnGestureListener must not be null");
}
mIsLongpressEnabled = true;

int touchSlop, doubleTapSlop;
if (context == null) {
touchSlop = ViewConfiguration.getTouchSlop();
doubleTapSlop = DOUBLE_TAP_SLAP;
mMinimumFlingVelocity = ViewConfiguration.getMinimumFlingVelocity();
mMaximumFlingVelocity = ViewConfiguration.getMaximumFlingVelocity();
} else {//允许识别器在App中,使用偏好的设定
final ViewConfiguration configuration = ViewConfiguration.get(context);
touchSlop = configuration.getScaledTouchSlop();
doubleTapSlop = configuration.getScaledDoubleTapSlop();
mMinimumFlingVelocity = configuration.getScaledMinimumFlingVelocity();
mMaximumFlingVelocity = configuration.getScaledMaximumFlingVelocity();
}
mTouchSlopSquare = touchSlop * touchSlop / 16;
mDoubleTapSlopSquare = doubleTapSlop * doubleTapSlop;
}

/**
 * 设置双击监听器
 * @param onDoubleTapListener
 */
public void setOnDoubleTapListener(MultiTouchDoubleTapListener onDoubleTapListener) {
mDoubleTapListener = onDoubleTapListener;
}

/**
 * 设置是否允许长按
 * @param isLongpressEnabled
 */
public void setIsLongpressEnabled(boolean isLongpressEnabled) {
mIsLongpressEnabled = isLongpressEnabled;
}

/**
 * 判断是否允许长按
 * @return
 */
public boolean isLongpressEnabled() {
return mIsLongpressEnabled;
}

/**
 * 判断当前事件是否为双击事件
 * <br/> 通过遍历sEventForDoubleTap来匹配是否存在能够构成双击事件的单击事件
 * @param e
 * @return
 */
private EventInfo checkForDoubleTap(MultiMotionEvent e) {
if (sEventForDoubleTap.isEmpty()) {
// Log.e(MYTAG, CLASS_NAME + ":checkForDoubleTap(), sEventForDoubleTap is empty !");
return null;
}
for (int i = 0; i < sEventForDoubleTap.size(); i++) {
EventInfo info = sEventForDoubleTap.get(i);
if (info != null && isConsideredDoubleTap(info, e)) {
sEventForDoubleTap.set(i, null);// 这个单击事件已经被消耗了,所以置为null
mHandler.removeMessages(TAP_DOUBLE, i);// 移除Handler内的为处理消息
return info;
}
}
return null;
}

/**
 * 判断当前按下事件是否能和指定的单击事件构成双击事件
 * 
 * @param info
 * @param secondDown
 * @return
 */
private boolean isConsideredDoubleTap(EventInfo info, MultiMotionEvent secondDown) {
if (!info.mAlwaysInBiggerTapRegion) { //如多第一次单击事件有过较大距离的移动,则无法构成双击事件
return false;
}
if (secondDown.getEventTime() - info.mPreviousUpEvent.getEventTime() > DOUBLE_TAP_TIMEOUT) {
//如果第一次单击的UP时间和第二次单击的down时间时间间隔大于DOUBLE_TAP_TIMEOUT,也无法构成双击事件
return false;
}
int deltaX = (int) info.mCurrentDownEvent.getX() - (int) secondDown.getX();
int deltaY = (int) info.mCurrentDownEvent.getY() - (int) secondDown.getY();
return (deltaX * deltaX + deltaY * deltaY < mDoubleTapSlopSquare);//最后判断两次单击事件的距离
}

/**
 * 将事件信息放入双击判断队列,并返回序号
 * 
 * @param info
 * @return
 */
private int addIntoTheMinIndex(EventInfo info) {
for (int i = 0; i < sEventForDoubleTap.size(); i++) {
if (sEventForDoubleTap.get(i) == null) {
sEventForDoubleTap.set(i, info);
return i;
}
}
sEventForDoubleTap.add(info);
return sEventForDoubleTap.size() - 1;
}

/**
 * 从事件信息队列中移除指定序号的事件
 * 
 * @param idx
 */
private void removeEventFromList(int id) {
if (id > sEventInfos.size() || id < 0) {
// Log.e(MYTAG, CLASS_NAME + ".removeEventFromList(), id=" + id + ", while sEventInfos.size() =" + sEventInfos.size());
return;
}
sEventInfos.set(id, null);
}

/**
 * 向事件队列中添加新信息
 * 
 * @param e
 */
private void addEventIntoList(EventInfo info) {
int id = info.mCurrentDownEvent.getId();
if (id < sEventInfos.size()) {
// if (sEventInfos.get(id) != null)
// Log.e(MYTAG, CLASS_NAME + ".addEventIntoList, info(" + id + ") has not set to null !");
sEventInfos.set(info.mCurrentDownEvent.getId(), info);
} else if (id == sEventInfos.size()) {
sEventInfos.add(info);
} else {
// Log.e(MYTAG, CLASS_NAME + ".addEventIntoList, invalidata id !");
}
}

------ eference ----------------------------------- ----
public boolean onTouchEvent(MotionEvent ev) {
if (mVelocityTracker == null) {
mVelocityTracker = VelocityTracker.obtain();
}
mVelocityTracker.addMovement(ev);//把所有事件都添加到速度追踪器,为计算速度做准备

boolean handled = false;
final int action = ev.getAction(); //获取Action 
// int idx = (action & MotionEvent.ACTION_POINTER_INDEX_MASK) >> MotionEvent.ACTION_POINTER_INDEX_SHIFT;//获取触摸事件的序号
int idx = ev.getPointerId(ev.getActionIndex());//获取触摸事件的id

switch (action & MotionEvent.ACTION_MASK) {
case MotionEvent.ACTION_DOWN:
case MotionEvent.ACTION_POINTER_DOWN: {
EventInfo info = new EventInfo(MotionEvent.obtain(ev));
this.addEventIntoList(info);//将手势信息保存到队列中
if (mDoubleTapListener != null) {//如果双击监听器不为null
if (mHandler.hasMessages(TAP_DOUBLE)) {
MultiMotionEvent e = new MultiMotionEvent(ev);
EventInfo origInfo = checkForDoubleTap(e);//检查是否构成双击事件
if (origInfo != null) {
info.mIsDoubleTapping = true;
handled |= mDoubleTapListener.onDoubleTap(origInfo.mCurrentDownEvent);
handled |= mDoubleTapListener.onDoubleTapEvent(e);
}
}
if (!info.mIsDoubleTapping) {//当前事件不构成双击事件,那么发送延迟消息以判断onSingleTapConfirmed事件
mHandler.sendMessageDelayed(mHandler.obtainMessage(TAP_SINGLE, idx), DOUBLE_TAP_TIMEOUT);
// Log.d(MYTAG, CLASS_NAME + ": add TAP_SINGLE");
}
}
// 记录X坐标和Y坐标
info.mLastMotionX = info.mCurrentDownEvent.getX();
info.mLastMotionY = info.mCurrentDownEvent.getY();

if (mIsLongpressEnabled) {//允许长按
mHandler.removeMessages(LONG_PRESS, idx);
mHandler.sendMessageAtTime(mHandler.obtainMessage(LONG_PRESS, idx), info.mCurrentDownEvent.getEventTime() + TAP_TIMEOUT
+ LONGPRESS_TIMEOUT);//延时消息以触发长按手势
// Log.d(MYTAG, CLASS_NAME +
// ":add LONG_PRESS to handler  for idx " + idx);
}

mHandler.sendMessageAtTime(mHandler.obtainMessage(SHOW_PRESS, idx), info.mCurrentDownEvent.getEventTime() + TAP_TIMEOUT);// 延时消息,触发showPress手势
handled |= mListener.onDown(info.mCurrentDownEvent);//触发onDown()
break;
}
case MotionEvent.ACTION_UP:
case MotionEvent.ACTION_POINTER_UP: {
MultiMotionEvent currentUpEvent = new MultiMotionEvent(ev);
if (idx >= sEventInfos.size()) {
// Log.e(MYTAG, CLASS_NAME + ":ACTION_POINTER_UP, idx=" + idx + ", while sEventInfos.size()=" + sEventInfos.size());
break;
}
EventInfo info = sEventInfos.get(currentUpEvent.getId());
if (info == null) {
// Log.e(MYTAG, CLASS_NAME + ":ACTION_POINTER_UP, idx=" + idx + ", Info = null");
break;
}

info.mStillDown = false;
if (info.mIsDoubleTapping) { //处于双击状态,则触发onDoubleTapEvent事件
handled |= mDoubleTapListener.onDoubleTapEvent(currentUpEvent);
} else if (info.mInLongPress) {//处于长按状态
mHandler.removeMessages(TAP_SINGLE, idx);//可以无视这行代码
info.mInLongPress = false;
} else if (info.mAlwaysInTapRegion) {//尚未移动过
if (mHandler.hasMessages(TAP_SINGLE, idx)) {//还在双击的时间阀值内,所以要为双击判断做额外处理
mHandler.removeMessages(TAP_SINGLE, idx);
info.mPreviousUpEvent = new MultiMotionEvent(MotionEvent.obtain(ev));
int index = this.addIntoTheMinIndex(info);// 把当前事件放入队列,等待双击的判断
mHandler.sendMessageAtTime(mHandler.obtainMessage(TAP_DOUBLE, index), info.mCurrentDownEvent.getEventTime()
+ DOUBLE_TAP_TIMEOUT); // 将双击超时判断添加到Handler
// Log.d(MYTAG, CLASS_NAME + ": add TAP_DOUBLE");
}
handled = mListener.onSingleTapUp(currentUpEvent);//触发onSingleTapUp事件
} else {
// A fling must travel the minimum tap distance
final VelocityTracker velocityTracker = mVelocityTracker;
velocityTracker.computeCurrentVelocity(1000, mMaximumFlingVelocity);//计算1秒钟内的滑动速度
//获取X和Y方向的速度
final float velocityX = velocityTracker.getXVelocity(idx);
final float velocityY = velocityTracker.getYVelocity(idx);

// Log.i(MYTAG, CLASS_NAME + ":ACTION_POINTER_UP, idx=" + idx +
// ", vx=" + velocityX + ", vy=" + velocityY);
// 触发滑动事件
if ((Math.abs(velocityY) > mMinimumFlingVelocity) || (Math.abs(velocityX) > mMinimumFlingVelocity)) {
handled = mListener.onFling(info.mCurrentDownEvent, currentUpEvent, velocityX, velocityY);
}
}
// Hold the event we obtained above - listeners may have changed the
// original.
if (action == MotionEvent.ACTION_UP) { //释放速度追踪器
mVelocityTracker.recycle();
mVelocityTracker = null;
// Log.w(MYTAG, CLASS_NAME +
// ":ACTION_POINTER_UP, mVelocityTracker.recycle()");
}

info.mIsDoubleTapping = false;
// Log.d(MYTAG, CLASS_NAME + "remove LONG_PRESS");
// 移除showPress和长按消息
mHandler.removeMessages(SHOW_PRESS, idx);
mHandler.removeMessages(LONG_PRESS, idx);

removeEventFromList(currentUpEvent.getId());//手指离开,则从队列中删除手势信息
break;
}

case MotionEvent.ACTION_MOVE:
for (int rIdx = 0; rIdx < ev.getPointerCount(); rIdx++) {//因为无法确定当前发生移动的是哪个手指,所以遍历处理所有手指
MultiMotionEvent e = new MultiMotionEvent(ev, rIdx);
if (e.getId() >= sEventInfos.size()) {
// Log.e(MYTAG, CLASS_NAME + ":ACTION_MOVE, idx=" + rIdx + ", while sEventInfos.size()=" + sEventInfos.size());
break;
}
EventInfo info = sEventInfos.get(e.getId());
if (info == null) {
// Log.e(MYTAG, CLASS_NAME + ":ACTION_MOVE, idx=" + rIdx + ", Info = null");
break;
}
if (info.mInLongPress) { //长按,则不处理move事件
break;
}
//当前坐标
float x = e.getX();
float y = e.getY();
//距离上次事件移动的位置
final float scrollX = x - info.mLastMotionX;
final float scrollY = y - info.mLastMotionY;
if (info.mIsDoubleTapping) {//双击事件
handled |= mDoubleTapListener.onDoubleTapEvent(e);
} else if (info.mAlwaysInTapRegion) {//该手势尚未移动过(移动的距离小于mTouchSlopSquare,视为未移动过)
// 计算从落下到当前事件,移动的距离
final int deltaX = (int) (x - info.mCurrentDownEvent.getX());
final int deltaY = (int) (y - info.mCurrentDownEvent.getY());
// Log.d(MYTAG, CLASS_NAME + "deltaX="+deltaX+";deltaY=" +
// deltaX +"mTouchSlopSquare=" + mTouchSlopSquare);
int distance = (deltaX * deltaX) + (deltaY * deltaY);
if (distance > mTouchSlopSquare) {  // 移动距离超过mTouchSlopSquare
handled = mListener.onScroll(info.mCurrentDownEvent, e, scrollX, scrollY);
info.mLastMotionX = e.getX();
info.mLastMotionY = e.getY();
info.mAlwaysInTapRegion = false;
// Log.d(MYTAG, CLASS_NAME +
// ":remove LONG_PRESS for idx" + rIdx +
// ",mTouchSlopSquare("+mTouchSlopSquare+"), distance("+distance+")");
// 清除onSingleTapConform,showPress,longPress三种消息
int id = e.getId();
mHandler.removeMessages(TAP_SINGLE, id);
mHandler.removeMessages(SHOW_PRESS, id);
mHandler.removeMessages(LONG_PRESS, id);
}
if (distance > mBiggerTouchSlopSquare) {//移动距离大于mBiggerTouchSlopSquare,则无法构成双击事件
info.mAlwaysInBiggerTapRegion = false;
}
} else if ((Math.abs(scrollX) >= 1) || (Math.abs(scrollY) >= 1)) {//之前已经移动过了
handled = mListener.onScroll(info.mCurrentDownEvent, e, scrollX, scrollY);
info.mLastMotionX = x;
info.mLastMotionY = y;
}
}
break;
case MotionEvent.ACTION_CANCEL:
cancel();//清理
}
return handled;
}

// 清理所有队列
private void cancel() {
mHandler.removeMessages(SHOW_PRESS);
mHandler.removeMessages(LONG_PRESS);
mHandler.removeMessages(TAP_SINGLE);
mVelocityTracker.recycle();
mVelocityTracker = null;
sEventInfos.clear();
sEventForDoubleTap.clear();
}
}


Finally, hang a tiny ad here :
I wrote App and friends here , I hope to give a support:
electronics market link address
Youtube demo video 1 (see over the wall )
Youtube demo video 2 (see over the wall )
------ eference ---------------------------------------

Oh, thank you
------ eference --------------------------------- ------
  The reply was deleted at 2011-12-07 09:38:16 moderator

------ eference ------------------------------------ ---
  The reply was deleted at the moderator 2011-12-07 10:37:32

------ eference ------------------------------------ ---
  The reply was deleted at the moderator 2011-12-08 10:00:09

------ eference ------------------------------------ ---
  The reply was deleted at the moderator 2011-12-07 09:39:44

------ eference ------------------------------------ ---
  The reply was deleted at the moderator 2011-12-07 10:39:47

------ eference ------------------------------------ ---
  The reply was deleted at the moderator 2011-12-07 09:22:04

------ eference ------------------------------------ ---
  The reply was deleted at 2011-12-07 09:42:22 moderator

------ eference ------------------------------------ ---
  The reply was deleted at 2011-12-07 09:24:47 moderator

------ eference ------------------------------------ ---
  The reply was deleted at 2011-12-07 09:42:22 moderator

------ eference ------------------------------------ ---
up early is recommended , for the first time is recommended , very happy ~
Thank you for your support! ~
------ eference ---------------------------------------
  The reply was deleted at the moderator 2011-12-07 09:48:32

------ eference ------------------------------------ ---
  The reply was deleted at the moderator 2011-12-07 10:21:33

------ eference ------------------------------------ ---

have not tried the engine , the low-end . . .
------ eference --------------------------------------- < br>
  The reply was deleted at the moderator 2011-12-07 10:41:26

------ eference ------------------------------------ ---
  The reply was deleted at 2011-12-07 11:03:01 moderator

------ eference ------------------------------------ ---
  The reply was deleted at 2011-12-07 13:12:07 moderator

------ eference ------------------------------------ ---

Well, last November began to touch android, learning time in the middle for a long , finally made ​​two App, the company has said to learn Win8, hard to force programmers. . .
------ eference --------------------------------------- < br>

Thank you advice , personal little App years later , will try to use the
------ eference ---------------------- -----------------
  The reply was deleted at the moderator 2011-12-07 14:57:52

------ eference ------------------------------------ ---
  The reply was deleted at the moderator 2011-12-07 15:29:06

------ eference ------------------------------------ ---

severe agree - in fact, went to her room early in the morning thanked the
------ eference ----------------- ----------------------
  The reply was deleted at the moderator 2011-12-08 08:59:44

------ eference ------------------------------------ ---
  The reply was deleted at the moderator 2011-12-08 08:57:21

------ eference ------------------------------------ ---
  The reply was deleted at the moderator 2011-12-08 08:53:16

------ eference ------------------------------------ ---
  The reply was deleted at the moderator 2011-12-08 08:51:00

------ eference ------------------------------------ ---
  The reply was deleted at the moderator 2011-12-08 08:49:54

------ eference ------------------------------------ ---
  The reply was deleted at the moderator 2011-12-08 09:03:52

------ eference ------------------------------------ ---
  The reply was deleted at the moderator 2011-12-08 09:05:39

------ eference ------------------------------------ ---

in fact, it is also a selfish , no moderator said so selfless . However, the fact App promotion does not matter, anyway , failure is no big deal .
Unfortunately, the future may also post a few in the Android area . Because of company policy , and now basically turning Win8 development , the current project is to make Win8 platform sharing tools . Android learned only two projects have made ​​a transfer platform , very egg pain .
------ eference --------------------------------------- < br>
Thank you , recently starting a new GLAXY S2 hardware resources to be provided for my amateur play android, huh. He still will do something with android gadgets .
------ eference --------------------------------------- < br>
  The reply was deleted at the moderator 2011-12-08 14:26:43

------ eference ------------------------------------ ---
  The reply was deleted at the moderator 2011-12-08 15:16:12

------ eference ------------------------------------ ---
  The reply was deleted at the moderator 2011-12-08 15:27:08

------ eference ------------------------------------ ---
  The reply was deleted at the moderator 2011-12-08 16:42:05

------ eference ------------------------------------ ---
  The reply was deleted at the moderator 2011-12-09 09:32:53

------ eference ------------------------------------ ---

Well, for this code have a problem?
or to join in words. . .
------ eference --------------------------------------- < br>
  The reply was deleted at the moderator 2011-12-09 13:03:39

------ eference ------------------------------------ ---
  The reply was deleted at the moderator 2011-12-09 13:22:50

------ eference ------------------------------------ ---
  The reply was deleted at the moderator 2011-12-09 13:32:51

------ eference ------------------------------------ ---
  The reply was deleted at the moderator 2011-12-09 13:40:33

------ eference ------------------------------------ ---
  The reply was deleted at the moderator 2011-12-12 09:30:21

------ eference ------------------------------------ ---
  The reply was deleted at the moderator 2011-12-12 09:16:34

Between different processes on android analog buttons and touch events

I can now write a simulated keys and touch events on different android applications, but with sendPointerSync and sendKeySync can not be used in different processes , there will be a use Injecting to another application requires INJECT_EVENTS permission abnormal even if permission is added INJECT_EVENTS is not enough , so do the underlying JNI to write a simulation . Which heroes know how to do it? best to give code. greatly appreciated ! ! ! ! ! ! ! ! < br> ------ Solution ----------------------------------------- ---
take a look monkey bar code, in development / cmds / monkey / src / com / android / commands / monkey. inputmanager Laigao through the inside . I do not know whether it is something you want , right when initiate it
------ Solution -------------------------- ------------------
with sendevent command like, if you have the patience , you can also put it into the JNI
------ Solution - ------------------------------------------


cow !

Also sendevent coordinate data on the simulator normal, but the device is not the problem , take a look : http://blog.csdn.net/yiyaaixuexi/article/details/6574001
------ eference --------------------------------------- < br>

Oh I see next .
------ eference ---------------------------- -----------


sendevent command to how to use ? there in which you can find its source .
------ eference -------------------- -------------------
sendevent / dev / input / eventX X X X
http://blog.csdn.net/watson243671/article/details/6647334
------ eference ------------------- --------------------


emergence of new problems .
I'm some development board, the screen is 800 * 480
But I used the top left corner getevent, and the touch screen to the data as follows :
/ dev/input/event1: 0003 0000 0000005b
/ dev/input/event1: 0003 0001 000000f1
/ dev/input/event1: 0001 014a 00000001
/ dev/input/event1: 0000 0000 00000000
/ dev/input/event1: 0003 0000 0000005f
/ dev/input/event1: 0000 0000 00000000
/ dev/input/event1: 0003 0000 00000061
/ dev/input/event1: 0000 0000 00000000
/ dev/input/event1: 0003 0000 00000066
/ dev/input/event1: 0000 0000 00000000
/ dev/input/event1: 0003 0000 000002e9
/ dev/input/event1: 0003 0001 0000391f
/ dev/input/event1: 0001 014a 00000000
/ dev/input/event1: 0000 0000 00000000

data obtained while the lower right corner of the touch screen is :
/ dev/input/event1: 0003 0000 00000f18
/ dev/input/event1: 0003 0001 00000e89
/ dev/input/event1: 0001 014a 00000001
/ dev/input/event1: 0000 0000 00000000
/ dev/input/event1: 0003 0000 00003c5c
/ dev/input/event1: 0003 0001 00000460
/ dev/input/event1: 0001 014a 00000000
/ dev/input/event1: 0000 0000 00000000

This data is not in the top left corner coordinates (0, 0 ) near the lower right corner has reached the coordinates ( 3864 , 3721 ) and this number far beyond the ( 800 , 480 ) a ah.
I was in the simulator next test is 800 * 480 screen , the result is at ( 0, 0 ) between the ( 800 , 480 ) , which is how ah ?
------ eference --------------------------------------- < br> this is the physical code . . . . . And hardware close. . . .
------ eference --------------------------------------- < br>

physics code do not understand.
Is there any way that can be ( 0, 0 ) to ( 800 , 480 ) to a physical code that what you ?
------ eference ------ ---------------------------------
If you know the range of XY physics codes, the ratio can be mapped
personally feel that this issue should be made ​​by the system , APP to do this live, a bit difficult , because the restrictions on individual programs are safer

top, waiting for the master appears
------ eference ------------------------------ ---------
  The reply was deleted at the moderator 2012-07-16 10:59:31

------ eference ------------------------------------ ---


I found a way .
ioctl ("/ dev/input/event1", EVIOCGABS (ABS_X), & info);
ioctl ("/ dev/input/event1", EVIOCGABS (ABS_Y), & info);
can get this range.
EVIOCGABS, ABS_X, ABS_Y and input_absinfo structures are defined in .
------ eference --------- ------------------------------

There is a small problem

Like you said : "qtouch-touchscreen" is not dead event several provisions , saying 1234567 are likely to see your equipment up .
I want to determine which is the touch , which is the key before they can operate normally , I do not know how to determine it , maybe take a look getevent code can be harvested .
------ eference ---------------------------------------
issue has been resolved .
------ eference ---------------------------------------
can not your code to the next , I have encountered this problem , it is an emergency ! ! ! Thank you very much ! ! !
------ eference --------------------------------------- < br>

my using the JNI . while to ROOT privileges.



#include <stdlib.h>
#include <android/log.h>
#include <fcntl.h>
#include <sys/ioctl.h>
#include <linux/input.h>
#include <dirent.h>
#include <errno.h>
//#include "nativemethod.h"

#define LOGI(...)  __android_log_print(ANDROID_LOG_INFO, "EventEmulate", __VA_ARGS__)
#define LOGE(...)  __android_log_print(ANDROID_LOG_ERROR, "EventEmulate", __VA_ARGS__)

#define DEV_DIR "/dev/input"
#define sizeof_bit_array(bits)  ((bits + 7) / 8)
#define test_bit(bit, array)    (array[bit/8] & (1<<(bit%8)))
#define ABS_MT_POSITION_X 0x35
#define ABS_MT_POSITION_Y 0x36

struct EVENT_INFO
{
int fd_touch;
int fd_key;
int screen_width;
int screen_height;
int abs_x_min;
int abs_x_max;
int abs_y_min;
int abs_y_max;
};

int scan_dir(const char *dirname);
int open_dev(const char *deviceName);
int write_event(int fd, int type, int code, int value);
void calculateXY(float x, float y, int *abs_x, int *abs_y);
int containsNonZeroByte(const uint8_t* array, uint32_t startIndex, uint32_t endIndex);

struct EVENT_INFO ei;
int initEVT = 0;

int EVT_open(struct NATIVE_INFO *info)
{
struct input_absinfo absinfo;

if(initEVT)
return 0;

if(info == NULL)
{
LOGE("info null point.");
goto fail;
}

if(info->FB_width == 0 || info->FB_height == 0)
{
LOGE("error width %d and height %d.", info->FB_width, info->FB_height);
goto fail;
}

memset(&ei, 0, sizeof(ei));
ei.screen_width = info->FB_width;
ei.screen_height = info->FB_height;

scan_dir(DEV_DIR);

if(ioctl(ei.fd_touch, EVIOCGABS(ABS_X), &absinfo)) {
LOGI("Error reading absolute controller ABS_X[%d]: %s", errno, strerror(errno));
return;
}
ei.abs_x_min = absinfo.minimum;
ei.abs_x_max = absinfo.maximum;

if(ioctl(ei.fd_touch, EVIOCGABS(ABS_Y), &absinfo)) {
LOGI("Error reading absolute controller ABS_Y[%d]: %s", errno, strerror(errno));
return;
}
ei.abs_y_min = absinfo.minimum;
ei.abs_y_max = absinfo.maximum;

initEVT = 1;
return 0;

fail:
EVT_close();
return -1;
}

int EVT_close()
{
if(ei.fd_key > 0)
close(ei.fd_key);
if(ei.fd_touch > 0)
close(ei.fd_touch);

initEVT = 0;
return 0;
}

int EVT_touch(int action, float x, float y)
{
int abs_x, abs_y;

if(initEVT == 0)
{
LOGE("event not inital");
return -1;
}

switch(action)
{
case ACTION_DOWN:
calculateXY(x, y, &abs_x, &abs_y);
write_event(ei.fd_touch, 3, 0, abs_x);
write_event(ei.fd_touch, 3, 1, abs_y);
write_event(ei.fd_touch, 1, 330, 1);
write_event(ei.fd_touch, 0, 0, 0);
break;
case ACTION_UP:
write_event(ei.fd_touch, 1, 330, 0);
write_event(ei.fd_touch, 0, 0, 0);
break;
case ACTION_MOVE:
calculateXY(x, y, &abs_x, &abs_y);
write_event(ei.fd_touch, 3, 0, abs_x);
write_event(ei.fd_touch, 3, 1, abs_y);
write_event(ei.fd_touch, 0, 0, 0);
break;
}
return 0;
}

int EVT_key(int action, int key)
{
if(initEVT == 0)
{
LOGE("event not inital");
return -1;
}

switch(action)
{
case ACTION_DOWN:
write_event(ei.fd_key, 1, key, 1);
break;
case ACTION_UP:
write_event(ei.fd_key, 1, key, 0);
break;
}
return 0;
}


int scan_dir(const char *dirname)
{
char devname[PATH_MAX];
char *filename;
DIR *dir;
struct dirent *de;
dir = opendir(dirname);
if(dir == NULL)
return -1;
strcpy(devname, dirname);
filename = devname + strlen(devname);
*filename++ = '/';
while((de = readdir(dir))) {
if(de->d_name[0] == '.' &&
   (de->d_name[1] == '\0' ||
(de->d_name[1] == '.' && de->d_name[2] == '\0')))
continue;
strcpy(filename, de->d_name);
open_dev(devname);
}
closedir(dir);
return 0;
}

int open_dev(const char *deviceName)
{
int fd;
int version;
uint8_t key_bitmask[sizeof_bit_array(KEY_MAX + 1)];
uint8_t abs_bitmask[sizeof_bit_array(ABS_MAX + 1)];

fd = open(deviceName, O_RDWR);
if(fd < 0) {
LOGI("could not open device[%d]: %s", errno, strerror(errno));
return -1;
}

if(ioctl(fd, EVIOCGVERSION, &version)) {
return -1;
}

memset(key_bitmask, 0, sizeof(key_bitmask));
if (ioctl(fd, EVIOCGBIT(EV_KEY, sizeof(key_bitmask)), key_bitmask) >= 0) {
if (containsNonZeroByte(key_bitmask, 0, sizeof_bit_array(BTN_MISC))
|| containsNonZeroByte(key_bitmask, sizeof_bit_array(BTN_GAMEPAD),
sizeof_bit_array(BTN_DIGI))
|| containsNonZeroByte(key_bitmask, sizeof_bit_array(KEY_OK),
sizeof_bit_array(KEY_MAX + 1))) {
ei.fd_key = fd;
LOGI("get key input device: %s", deviceName);
}
}

memset(abs_bitmask, 0, sizeof(abs_bitmask));
if (ioctl(fd, EVIOCGBIT(EV_ABS, sizeof(abs_bitmask)), abs_bitmask) >= 0) {
// Is this a new modern multi-touch driver?
if (test_bit(ABS_MT_POSITION_X, abs_bitmask)
&& test_bit(ABS_MT_POSITION_Y, abs_bitmask)) {
ei.fd_touch = fd;
LOGI("get multi-touch input device: %s", deviceName);

// Is this an old style single-touch driver?
} else if (test_bit(BTN_TOUCH, key_bitmask)
&& test_bit(ABS_X, abs_bitmask) && test_bit(ABS_Y, abs_bitmask)) {
ei.fd_touch = fd;
LOGI("get single-touch input device: %s", deviceName);
}
}
}

int write_event(int fd, int type, int code, int value)
{
struct input_event event;

memset(&event, 0, sizeof(event));
event.type = type;
event.code = code;
event.value = value;
if(write(fd, &event, sizeof(event)) < sizeof(event)) {
LOGI("write event failed[%d]: %s", errno, strerror(errno));
return -1;
}
return 0;
}

void calculateXY(float x, float y, int *abs_x, int *abs_y)
{
*abs_x = ei.abs_x_min +
(int)((x * (float)(ei.abs_x_max - ei.abs_x_min)) / ei.screen_width + 0.5);
*abs_y = ei.abs_y_min +
(int)((y * (float)(ei.abs_y_max - ei.abs_y_min)) / ei.screen_height + 0.5);
}

int containsNonZeroByte(const uint8_t* array, uint32_t startIndex, uint32_t endIndex)
{
    const uint8_t* end = array + endIndex;
    array += startIndex;
    while (array != end) {
        if (*(array++) != 0) {
            return 1;
        }
    }
    return 0;
}



struct NATIVE_INFO structure which is my own definition. which contains the width and height of the screen .
------ eference --------------- ------------------------
Liu ~
------ eference ---------- -----------------------------
landlord did not give header files. . . Compile various errors
------ eference ------------------------------------ ---


This is just to give you as a reference .
header file is only nativemethod.h I wrote it myself , the other should all be there .
------ eference ------------- --------------------------
landlord, can not give a definition NATIVE_INFO for ?
------ eference --------------------------------------- < br> recently, I also studied the landlord .... this is a white ... can you say a little more points the amount of ... grateful ah ~ ~ ~ ~
------ eference ---------------------------- -----------
brothers and I also need to solve the same problem , the landlord can give you copies of the source code
------ eference ---------- -----------------------------
Why can simulate the value of 122 keys
------ eference ---------------------------------------
I refer to try it, found command ACTION_DOWN ACTION_UP ACTION_MOVE need to send different formats on different devices
would like to ask how this place plus judge can write a generic. . .

I hope you have time gets advice

Here is what I wrote for two different devices function , do not know if you can add some written as a judge . . . .
Samsung follows

case AMOTION_EVENT_ACTION_DOWN:
calculateXY (x, y, & abs_x, & abs_y);
write_event (ei.fd_touch, 3, 57, 0);
write_event (ei.fd_touch, 3, 53, abs_x);
write_event (ei.fd_touch, 3, 54, abs_y);
write_event (ei.fd_touch, 3, 48, 20);
write_event (ei.fd_touch, 0, 0, 0);
break;
case AMOTION_EVENT_ACTION_UP:
write_event (ei.fd_touch, 3, 57, -1);
write_event (ei.fd_touch, 0, 0, 0);
break;
case AMOTION_EVENT_ACTION_MOVE:
calculateXY (x, y, & abs_x, & abs_y);
write_event (ei.fd_touch, 3, 53, abs_x);
write_event (ei.fd_touch, 3, 54, abs_y);
write_event (ei.fd_touch, 3, 48, 20);
write_event (ei.fd_touch, 0, 0, 0);
break;



another device
case AMOTION_EVENT_ACTION_DOWN:
calculateXY (x, y, & abs_x, & abs_y);
write_event (ei.fd_touch, 3, 53, abs_x);
write_event (ei.fd_touch, 3, 54, abs_y);
write_event (ei.fd_touch, 3, 48, 1);
write_event (ei.fd_touch, 0, 2, 0);
write_event (ei.fd_touch, 0, 0, 0);
break;
case AMOTION_EVENT_ACTION_UP:
write_event (ei.fd_touch, 0, 2, 0);
write_event (ei.fd_touch, 0, 0, 0);
break;
case AMOTION_EVENT_ACTION_MOVE:
calculateXY (x, y, & abs_x, & abs_y);
write_event (ei.fd_touch, 3, 53, abs_x);
write_event (ei.fd_touch, 3, 54, abs_y);
write_event (ei.fd_touch, 3, 48, 1);
write_event (ei.fd_touch, 0, 2, 0);
write_event (ei.fd_touch, 0, 0, 0);
break;