Click here to Skip to main content
15,884,473 members
Home / Discussions / Android
   

Android

 
GeneralRe: Detect VPN From Android App Pin
Kevin Marois26-Nov-18 7:26
professionalKevin Marois26-Nov-18 7:26 
QuestionRe: Detect VPN From Android App Pin
David Crow26-Nov-18 7:50
David Crow26-Nov-18 7:50 
AnswerRe: Detect VPN From Android App Pin
Kevin Marois26-Nov-18 9:12
professionalKevin Marois26-Nov-18 9:12 
QuestionRe: Detect VPN From Android App Pin
David Crow26-Nov-18 9:17
David Crow26-Nov-18 9:17 
AnswerRe: Detect VPN From Android App Pin
Kevin Marois26-Nov-18 9:21
professionalKevin Marois26-Nov-18 9:21 
SuggestionRe: Detect VPN From Android App Pin
David Crow26-Nov-18 9:26
David Crow26-Nov-18 9:26 
GeneralRe: Detect VPN From Android App Pin
Kevin Marois26-Nov-18 11:00
professionalKevin Marois26-Nov-18 11:00 
GeneralRe: Detect VPN From Android App Pin
Mycroft Holmes26-Nov-18 13:47
professionalMycroft Holmes26-Nov-18 13:47 
GeneralRe: Detect VPN From Android App Pin
Richard MacCutchan26-Nov-18 21:14
mveRichard MacCutchan26-Nov-18 21:14 
QuestionRe: Detect VPN From Android App Pin
David Crow26-Nov-18 6:54
David Crow26-Nov-18 6:54 
AnswerRe: Detect VPN From Android App Pin
Kevin Marois26-Nov-18 7:26
professionalKevin Marois26-Nov-18 7:26 
QuestionExpandableListView ChildView button click event fires on multiple ChildView buttons Pin
GuyThiebaut17-Nov-18 5:57
professionalGuyThiebaut17-Nov-18 5:57 
QuestionRoundCube Pin
C-P-User-311-Nov-18 23:08
C-P-User-311-Nov-18 23:08 
AnswerRe: RoundCube Pin
Richard MacCutchan12-Nov-18 2:08
mveRichard MacCutchan12-Nov-18 2:08 
QuestioncPanel ? Pin
C-P-User-311-Nov-18 23:06
C-P-User-311-Nov-18 23:06 
Questionget request volley return normal null Pin
Member 1308507021-Oct-18 23:51
Member 1308507021-Oct-18 23:51 
QuestionRe: get request volley return normal null Pin
David Crow30-Oct-18 4:03
David Crow30-Oct-18 4:03 
SuggestionRe: get request volley return normal null Pin
thatraja30-Oct-18 4:30
professionalthatraja30-Oct-18 4:30 
QuestionHow connect with IR camera, deep camera Pin
pablogvivo8-Oct-18 20:03
pablogvivo8-Oct-18 20:03 
Questionandroid Pin
Member 1399693125-Sep-18 2:14
Member 1399693125-Sep-18 2:14 
Questionandroid layout problem Pin
Member 1399693125-Sep-18 2:16
Member 1399693125-Sep-18 2:16 
sir i tried to make a signup page, so i wrote code in scroll view and leniar layout but cant not design a perfect page pls help me.......
code bleow
<?xml version="1.0" encoding="utf-8"?>
<ScrollView
    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="match_parent">

    <LinearLayout
        android:layout_width="match_parent"

        android:layout_height="wrap_content">


        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent">

            <android.support.design.widget.TextInputLayout
                android:id="@+id/textInputLayout2"
                android:layout_width="377dp"
                android:layout_height="64dp"
                android:layout_marginBottom="8dp"
                android:layout_marginEnd="8dp"
                android:layout_marginStart="8dp"
                app:layout_constraintBottom_toTopOf="@+id/textView10"
                app:layout_constraintEnd_toEndOf="parent"
                app:layout_constraintStart_toStartOf="parent">

                <android.support.design.widget.TextInputEditText
                    android:layout_width="383dp"
                    android:layout_height="wrap_content"
                    android:hint="FIRST  NAME" />
            </android.support.design.widget.TextInputLayout>

            <android.support.design.widget.TextInputLayout
                android:id="@+id/textInputLayout"
                android:layout_width="374dp"
                android:layout_height="51dp"
                android:layout_marginBottom="8dp"
                android:layout_marginEnd="8dp"
                android:layout_marginStart="8dp"
                app:layout_constraintBottom_toTopOf="@+id/textView11"
                app:layout_constraintEnd_toEndOf="parent"
                app:layout_constraintStart_toStartOf="parent">

                <android.support.design.widget.TextInputEditText
                    android:layout_width="384dp"
                    android:layout_height="46dp"
                    android:hint="LAST NAME" />
            </android.support.design.widget.TextInputLayout>

            <android.support.design.widget.TextInputLayout
                android:id="@+id/textInputLayout3"
                android:layout_width="384dp"
                android:layout_height="58dp"
                android:layout_marginBottom="8dp"
                android:layout_marginEnd="8dp"
                app:layout_constraintBottom_toTopOf="@+id/textView12"
                app:layout_constraintEnd_toEndOf="parent"
                app:layout_constraintHorizontal_bias="0.0"
                app:layout_constraintStart_toStartOf="parent">

                <EditText
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:hint="you@domain.com" />
            </android.support.design.widget.TextInputLayout>

            <TextView
                android:id="@+id/textView"
                android:layout_width="381dp"
                android:layout_height="45dp"
                android:layout_marginEnd="8dp"
                android:layout_marginStart="8dp"
                android:layout_marginTop="8dp"
                android:text="FIRST NAME"
                android:textColor="#FF00"
                android:textColorHighlight="?attr/colorBackgroundFloating"
                android:textColorLink="?android:attr/colorLongPressedHighlight"
                app:layout_constraintBottom_toTopOf="@+id/textInputLayout2"
                app:layout_constraintEnd_toEndOf="parent"
                app:layout_constraintHorizontal_bias="0.461"
                app:layout_constraintStart_toStartOf="parent"
                app:layout_constraintTop_toTopOf="parent"
                app:layout_constraintVertical_bias="0.727" />

            <TextView
                android:id="@+id/textView10"
                android:layout_width="372dp"
                android:layout_height="34dp"
                android:layout_marginEnd="8dp"
                android:layout_marginStart="8dp"
                android:text="LAST NAME"
                android:textColor="#FF00"
                app:layout_constraintBottom_toTopOf="@+id/textInputLayout"
                app:layout_constraintEnd_toEndOf="parent"
                app:layout_constraintStart_toStartOf="parent" />

            <TextView
                android:id="@+id/textView11"
                android:layout_width="377dp"
                android:layout_height="37dp"
                android:layout_marginEnd="8dp"
                android:layout_marginStart="8dp"
                android:text="EMAIL"
                android:textColor="#FF00"
                app:layout_constraintBottom_toTopOf="@+id/textInputLayout3"
                app:layout_constraintEnd_toEndOf="parent"
                app:layout_constraintStart_toStartOf="parent" />

            <TextView
                android:id="@+id/textView12"
                android:layout_width="376dp"
                android:layout_height="41dp"
                android:layout_marginBottom="8dp"
                android:layout_marginEnd="8dp"
                android:layout_marginStart="8dp"
                android:text="PASSWORD"
                android:textColor="@color/pink"
                app:layout_constraintBottom_toTopOf="@+id/textInputLayout4"
                app:layout_constraintEnd_toEndOf="parent"
                app:layout_constraintStart_toStartOf="parent" />

            <android.support.design.widget.TextInputLayout
                android:id="@+id/textInputLayout4"
                android:layout_width="376dp"
                android:layout_height="57dp"
                android:layout_marginEnd="8dp"
                android:layout_marginStart="8dp"
                app:layout_constraintEnd_toEndOf="parent"
                app:layout_constraintStart_toStartOf="parent"
                tools:layout_editor_absoluteY="381dp">

                <android.support.design.widget.TextInputEditText
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:hint="create a new password" />
            </android.support.design.widget.TextInputLayout>

            <Button
                android:id="@+id/button4"
                android:layout_width="160dp"
                android:layout_height="50dp"
                android:background="@color/blue"
                android:text="SIGNUP"
                android:textColor="?android:attr/colorLongPressedHighlight"
                tools:layout_editor_absoluteX="108dp"
                tools:layout_editor_absoluteY="540dp" />


            <CheckBox
                android:id="@+id/checkBox"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginEnd="8dp"
                android:layout_marginStart="8dp"
                android:layout_marginTop="8dp"
                android:text="I certify that I am 18 years of age or older, I agree of age of older, I agree to the User Agreement  and acknowledge the privacy Policy "
                app:layout_constraintEnd_toEndOf="parent"
                app:layout_constraintHorizontal_bias="0.571"
                app:layout_constraintStart_toStartOf="parent"
                app:layout_constraintTop_toBottomOf="@+id/textInputLayout4" />

        </RelativeLayout>
    </LinearLayout>

</ScrollView>

AnswerRe: android layout problem Pin
OriginalGriff25-Sep-18 2:19
mveOriginalGriff25-Sep-18 2:19 
QuestionHow to measure a room using frustum in AR(Augmented Reality)? Pin
Member 139764627-Sep-18 0:54
Member 139764627-Sep-18 0:54 
AnswerRe: How to measure a room using frustum in AR(Augmented Reality)? Pin
Marco Bertschi7-Sep-18 0:56
protectorMarco Bertschi7-Sep-18 0:56 
QuestionNeed help with android studio java. my app keeps crashing due to an null error but cant figure out why? Pin
Member 1391233215-Jul-18 8:10
Member 1391233215-Jul-18 8:10 

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.