Click here to Skip to main content
15,880,503 members
Home / Discussions / Android
   

Android

 
GeneralRe: Access MySql using php script from Android app.. Pin
Member 1341654720-Sep-17 19:24
Member 1341654720-Sep-17 19:24 
SuggestionRe: Access MySql using php script from Android app.. Pin
David Crow20-Sep-17 16:52
David Crow20-Sep-17 16:52 
GeneralRe: Access MySql using php script from Android app.. Pin
Member 1341654723-Sep-17 15:03
Member 1341654723-Sep-17 15:03 
QuestionFCM notification Pin
Malashree Halade9-Sep-17 3:26
Malashree Halade9-Sep-17 3:26 
AnswerRe: FCM notification Pin
David Crow9-Sep-17 4:55
David Crow9-Sep-17 4:55 
GeneralRe: FCM notification Pin
Malashree Halade9-Sep-17 5:38
Malashree Halade9-Sep-17 5:38 
GeneralRe: FCM notification Pin
Malashree Halade9-Sep-17 5:41
Malashree Halade9-Sep-17 5:41 
QuestionRe: FCM notification Pin
David Crow9-Sep-17 14:31
David Crow9-Sep-17 14:31 
Generalfor googple map serach location Pin
Member 133938216-Sep-17 2:23
Member 133938216-Sep-17 2:23 
QuestionRe: for googple map serach location Pin
David Crow6-Sep-17 3:14
David Crow6-Sep-17 3:14 
QuestionRe: for googple map serach location Pin
Richard MacCutchan6-Sep-17 3:55
mveRichard MacCutchan6-Sep-17 3:55 
QuestionRe: for googple map serach location Pin
thatraja6-Sep-17 4:33
professionalthatraja6-Sep-17 4:33 
QuestionIssue navigating to a Fragment Pin
Vimalsoft(Pty) Ltd3-Sep-17 10:56
professionalVimalsoft(Pty) Ltd3-Sep-17 10:56 
Good Day All

i have a Navigation Drawer which is defined like this

<FrameLayout
                android:id="@+id/content_frame"
                android:layout_width="match_parent"
                android:background="#0099ff"
                android:layout_height="fill_parent" />

and when one of my drawer item is selected i have this code

// Create a new fragment and a transaction.
                        FragmentTransaction fragmentTx = this.FragmentManager.BeginTransaction();
                        Fragment1 aDifferentDetailsFrag = new Fragment1(); 
                        // The fragment will have the ID of Resource.Id.fragment_container.
                        fragmentTx.Add(Resource.Id.content_frame, aDifferentDetailsFrag);

<pre>
                    // Commit the transaction.
                    fragmentTx.Commit();
                    Toast.MakeText(this, "Home:", ToastLength.Long).Show();</pre>

and Fragment1 is defined like this
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:local="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"

<pre>
android:paddingLeft="12dp"
        android:paddingRight="12dp">

    <Button
        android:textSize="24dp"
        android:textColor="#FFF"
        android:id="@+id/btn_details_file_save"
        android:layout_width="match_parent" 
        android:layout_height="wrap_content"
        android:text="HOME" />



and the cs is defined like this

public class Fragment1 :  Fragment
    {

<pre>
    public override void OnCreate(Bundle savedInstanceState)
    {
        base.OnCreate(savedInstanceState);

        // Create your fragment here
    }
    public override View OnCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState)
    {
        return inflater.Inflate(Resource.Layout.Fragment1, null, false); 
    }
}</pre>

when i run this , i only get a toast message, the Fragment1 does not show which has a button that is having text "home"

Thanks
Vuyiswa Maseko,

Spoted in Daniweb-- Sorry to rant. I hate websites. They are just wierd. They don't behave like normal code.

C#/VB.NET/ASP.NET/SQL7/2000/2005/2008
http://www.vimalsoft.com
vuyiswa[at]vimalsoft.com

Question(View) in a parent or ancestor Context for android:onClick attribute defined on view class Button Pin
Vimalsoft(Pty) Ltd30-Aug-17 7:22
professionalVimalsoft(Pty) Ltd30-Aug-17 7:22 
SuggestionRe: (View) in a parent or ancestor Context for android:onClick attribute defined on view class Button Pin
David Crow30-Aug-17 10:35
David Crow30-Aug-17 10:35 
GeneralRe: (View) in a parent or ancestor Context for android:onClick attribute defined on view class Button Pin
Vimalsoft(Pty) Ltd30-Aug-17 11:08
professionalVimalsoft(Pty) Ltd30-Aug-17 11:08 
QuestionRe: (View) in a parent or ancestor Context for android:onClick attribute defined on view class Button Pin
David Crow31-Aug-17 3:56
David Crow31-Aug-17 3:56 
AnswerRe: (View) in a parent or ancestor Context for android:onClick attribute defined on view class Button Pin
Vimalsoft(Pty) Ltd31-Aug-17 4:00
professionalVimalsoft(Pty) Ltd31-Aug-17 4:00 
AnswerRe: (View) in a parent or ancestor Context for android:onClick attribute defined on view class Button Pin
David Crow31-Aug-17 4:23
David Crow31-Aug-17 4:23 
GeneralRe: (View) in a parent or ancestor Context for android:onClick attribute defined on view class Button Pin
Vimalsoft(Pty) Ltd3-Sep-17 10:49
professionalVimalsoft(Pty) Ltd3-Sep-17 10:49 
SuggestionAndroid Notification by App Pin
Andy_Bell27-Aug-17 6:58
Andy_Bell27-Aug-17 6:58 
QuestionRe: Android Notification by App Pin
David Crow27-Aug-17 13:00
David Crow27-Aug-17 13:00 
AnswerRe: Android Notification by App Pin
Andy_Bell27-Aug-17 20:59
Andy_Bell27-Aug-17 20:59 
QuestionRe: Android Notification by App Pin
David Crow28-Aug-17 2:05
David Crow28-Aug-17 2:05 
AnswerRe: Android Notification by App Pin
Andy_Bell28-Aug-17 3:40
Andy_Bell28-Aug-17 3:40 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.