- how to distinguish sandbox order - 1 Update
- Eye Blink detection - 1 Update
- How to integrate in app billing in android - 2 Updates
- High speed camera capture - 1 Update
- Audio recording problem - fake sample rate - 1 Update
- Android permission revoking - 1 Update
- RelativeLayout as a child of CoordinatorLayout - 2 Updates
- Help me get this code working!! - 1 Update
- Getting MAC address in Android 6.0 - 1 Update
- AUtomatic grid view reorder - 1 Update
gupei89@gmail.com: Jan 31 08:24PM -0800 Hi, all: I am reviewing googlepay's in-app-billing, and find the desciption of purchase return is not consistency with the reality. I create an sandbox order, but actrually it return me an orderid. According to the offical pay-document described like attachment, it will not return an orderid parms! page url is http://developer.android.com/intl/zh-cn/google/play/billing/billing_reference.html ; However, in a word: I want to distinguish our order is sandbox order or not? Verify expecting yours help! thx! |
sarmad mueen abd al mushyb <ece80490@myport.ac.uk>: Jan 31 05:02PM -0800 Hi I'm trying to do an app for blink detection , I'm a beginner in android . How this can de done in android ? Thanks |
Jin Cheng <wangba55555@gmail.com>: Jan 31 08:38AM -0800 Hello, everybody. I am making a android app with in-app billing function. If you have some experience about it, please help me. Thank you for your attention. Regards Jin |
jtoolsdev <brianjtools@gmail.com>: Jan 31 02:50PM -0800 There are some good blog articles online with concise information. You can fill in the rest by reading Google's documentation though I wouldn't say that documentation is Google's strong point. On Sunday, January 31, 2016 at 8:38:48 AM UTC-8, Jin Cheng wrote: |
Joshua Parrish <jparrish88@gmail.com>: Jan 31 12:02PM -0800 Hello all, I'm doing my best to develop an app for high-speed camera capture. Unfortunately, it's difficult to work with createConstrainedHighSpeedCaptureSession since there are no samples available anywhere. Would it be possible for this community to come up with a small set of sample code? For instance, there is a https://github.com/googlesamples/android-Camera2Video, but changing it to contain a high speed request is a bit confusing. Where I'm having trouble is specifically calling the camera requests. One must create a list, instead of using the request builder due to the need to use setRepeatingBurst. That said I run into several issues. One being that the createConstrainedHighSpeedCapture is supposed to produce a CameraConstrainedHighSpeedCaptureSession ; but I don't see how to do that since createConstrainedHighSpeedCaptureSession actually produces a CameraCaptureSession. Basically, all I'm asking for is sample code for: createConstrainedHighSpeedCaptureSession with an onConfigured callback inside the onConfigured one needs to use createHighSpeedRequestList and setRepeatingBurst If a sample for just that piece could be created I would be very appreciative. |
Julian Bunn <jjbunn@gmail.com>: Jan 31 11:39AM -0800 If you are only getting 8000 sps then even with interpolation to 44100 you would never see any signal above 4000Hz in an FFT, right? Are you windowing the FFT? If there are truly problems like this with the audio firmware on the LG G3 and Nexus 7, I haven't heard any reports from my users about them. That's not to say there can't be an issue, of course :-) If I were you, I would obtain a cheap used G3 on Ebay to test with. On Saturday, January 30, 2016 at 6:13:08 PM UTC-8, RLScott wrote: |
Dushyant Bhatt <dushyant.k.bhatt@gmail.com>: Jan 31 08:22AM -0800 Hi Team, I am working on my research project on android security. where i need to revoke some permissions of installed application. so please help me about HOW TO REVOKE PERMISSION OF INSTALLED APPLICATION ONE BY ONE. Thank You |
Angel Todorov <attodorov@gmail.com>: Jan 31 03:14AM -0800 hey, Thanks for the feedback. I'm setting the scroll flags and scroll behaviors, here's my code (below). The issue with AppBarLayout as a first child is that whenever I set it inside of a relative layout, which is a child of the CoordinatorLayout, the scrolling behavior doesn't work. I guess I wasn't clear enough - it should be somewhere in the direct children of the CoordinatorLayout, if it's a child of a child, the coordinator layout doesn't pick it up. My issue is not with the scrolling behavior - that works perfectly fine. my issue is that the content is overlapped by the app bar. The only way to fix this is to use a relative layout and set layout_below, but then the scrolling behavior stops working. <?xml version="1.0" encoding="utf-8"?> <android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="wrap_content" android:id="@+id/coordinator" android:fitsSystemWindows="true" tools:context="com.example.todorov.myapplication.MainActivity"> <android.support.design.widget.AppBarLayout android:id="@+id/appbar" android:layout_width="match_parent" android:layout_height="wrap_content" android:theme="@style/AppTheme.AppBarOverlay"> <android.support.v7.widget.Toolbar android:id="@+id/toolbar" android:layout_width="match_parent" android:gravity="center" android:backgroundTint="#0288D1" android:layout_gravity="center" android:layout_height="?attr/actionBarSize" android:background="?attr/colorPrimary" app:popupTheme="@style/AppTheme.PopupOverlay" app:layout_scrollFlags="scroll|enterAlways"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Toolbar Title" android:textSize="25dp" android:textColor="#ffffff" android:layout_gravity="center" android:id="@+id/toolbar_title" /> </android.support.v7.widget.Toolbar> </android.support.design.widget.AppBarLayout> <include layout="@layout/content_matches" android:layout_width="match_parent" android:layout_height="match_parent" /> <!-- <android.support.design.widget.FloatingActionButton android:id="@+id/fab" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="bottom|end" android:layout_margin="@dimen/fab_margin" android:src="@android:drawable/ic_dialog_email" /> --> </android.support.design.widget.CoordinatorLayout> Here is content_matches.xml: <?xml version="1.0" encoding="utf-8"?> <com.orangegangsters.github.swipyrefreshlayout.library.SwipyRefreshLayout xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/swipe_container" android:layout_width="match_parent" android:layout_height="wrap_content" app:direction="both"> <ListView xmlns:android="http://schemas.android.com/apk/res/android" android:id="@android:id/list" android:layout_width="wrap_content" app:layout_behavior="@string/appbar_scrolling_view_behavior" android:cacheColorHint="#00000000" android:layout_height="wrap_content"/> </com.orangegangsters.github.swipyrefreshlayout.library.SwipyRefreshLayout> I've also tried moving the list view outside of the SwipyRefreshLayout - didn't change anything. Also want to clarify that i am setting the following in code, so that I don't have to use a RecyclerView or another view that supports nested scrolling - because the ListView on its own doesn't support nested scrolling, and coordinator layout's scrolling behavior expects a content view which supports nested scrolling: listview.setNestedScrollingEnabled(true); ViewCompat.setNestedScrollingEnabled(listview, true); Thanks again, Angel On Sunday, January 31, 2016 at 7:02:27 AM UTC+2, TreKing wrote: |
Angel Todorov <attodorov@gmail.com>: Jan 31 03:02PM +0200 Found the issue, app:layout_behavior="@string/appbar_scrolling_view_behavior" should be set on the SwipyRefreshLayout, not on the ListView. Thanks, Angel |
Chuck Crisler <ccrislerathome@gmail.com>: Jan 31 07:42AM -0500 The error says it all and is clear. The class ProcessRegister *MUST* contain a method doinBackground. This is simple Java. Read about abstract classes/interfaces and you will understand. |
Haianhnc Haianhnc <haianhnc@gmail.com>: Jan 31 01:44AM -0800 up vote0down votefavorite <http://stackoverflow.com/questions/35112309/get-mac-address-in-android-6#> I've refer https://developer.android.com/about/versions/marshmallow/android-6.0-changes.html#behavior-hardware-id and Getting MAC address in Android 6.0 <http://stackoverflow.com/questions/33159224/getting-mac-address-in-android-6-0>. It's seem unable to get MAC address in android 6. Without WifiInfo.getMacAddress() and the BluetoothAdapter.getAddress() can we have an other way to get MAC address programmatically of local device. |
Don Yohel <donyohel@gmail.com>: Jan 30 11:24PM -0800 Hello everyone, I am working on a project and i wanted to reorganize the items in a grid view ranging from the most clicked item to the least clicked item. Please any help on how i can do that? Thank you |
You received this digest because you're subscribed to updates for this group. You can change your settings on the group membership page. To unsubscribe from this group and stop receiving emails from it send an email to android-developers+unsubscribe@googlegroups.com. |