Re: [android-developers] Re: MediaPlayer suddenly stopped working in Android 4.2

2013-02-15 Thread Mahabaleshwara Adiga
Hi, Can you check your audio codec formats ? Some of the mp3 audio codecs will be differed.. So by default Media palyer could not play the some mp3 audio codecs. If you want to see different audio codecs, go to 'Mediaplayer codecs in android'. Use proper audio codecs and play smoothly.. On

Re: [android-developers] Andriod Button-doubt

2012-04-10 Thread Mahabaleshwara Adiga
Use System.out.println( msg); and go to Logcat files and check it or you can use Toast property. Regards, M.Adiga On Tue, Apr 10, 2012 at 3:38 PM, Jim Graham spooky1...@gmail.com wrote: On Thu, Apr 05, 2012 at 06:04:27AM -0700, decent boy wrote: If we have a no. of buttons and i we want

[android-developers] Graphical Layout- View Problem

2012-04-02 Thread Mahabaleshwara Adiga
Hi, I am using Eclipse IDE for developing Android App. In my xml file, LinearLayout frameLayout ListView // /ListView /frameLayout // Here i want to insert Button /LinearLayout Problem is i can't view in Graphical Layout. i should insert a button..

Re: [android-developers] How to get the TextView values in ListView

2012-03-29 Thread Mahabaleshwara Adiga
Hi, If you want to access textview values from ListView, then you should use this code: public void onItemClick(AdapterView? arg0,View arg1,int position,long id) { TextView tv=(TextView) arg1.findViewById(R.id.videoId); String value=tv.getText().toString(); }

Re: [android-developers]

2012-03-27 Thread Mahabaleshwara Adiga
Hi, You can try this source code; ?xml version=1.0 encoding=utf-8? TabHost xmlns:android=http://schemas.android.com/apk/res/android; android:id=@android:id/tabhost android:layout_width=fill_parent android:layout_height=fill_parent LinearLayout android:orientation=vertical

[android-developers] How to get the TextView values in ListView

2012-03-27 Thread Mahabaleshwara Adiga
Hi, I am using ListView CustomAdapter and i had placed the values in ListView. When i am clicking particular row in listview, i want to extract the textview values of that corresponding row. How to get these values..??? Plz Help me.. I am using these code public void onItemClick(AdapterView?