User Controls

My New Front Door Cam

  1. #21
    infinityshock Black Hole
    Originally posted by mmQ You are a very tame person.

    i concur
  2. #22
    SBTlauien African Astronaut
    Well, PhotoBucket use to be good. Now it sucks.
  3. #23
    LegalizeSpiritualDiscovery Space Nigga [my yellow-marked arboreous hypnotist]
    Originally posted by mmQ You are a very tame person.

    More like LAME! Aha. hahaha. haHA. AhaHAHA. He can't walk.
  4. #24
    Panthrax Tuskegee Airman
    Originally posted by infinityshock bullshit.

    98% of the time i get search-results for a forum or some other site that has pics there is that shitty photobucket error message…

    Exactly, I loathe photobucket for this.
  5. #25
    mmQ Lisa Turtle
    Originally posted by LegalizeSpiritualDiscovery More like LAME! Aha. hahaha. haHA. AhaHAHA. He can't walk.



    Originally posted by Panthrax Exactly, I loathe photobucket for this.

    More like photoFUCKIT! Aha. hahaha. haHA. AhaHAHA. It can't walk.


























    .


















    Wait a second.
    The following users say it would be alright if the author of this post didn't die in a fire!
  6. #26
    aldra JIDF Controlled Opposition
    Originally posted by mmQ Wait a second.
  7. #27
    SBTlauien African Astronaut
    So I made this little Android app that now lets me quickly open an app that shows my front doorstep...

    MainActivity.java

    package com.user.frontdoor;

    import android.Manifest;
    import android.content.pm.PackageManager;
    import android.os.Bundle;
    import android.support.v4.app.ActivityCompat;
    import android.support.v4.content.ContextCompat;
    import android.support.v7.app.AppCompatActivity;
    import android.view.View;
    import android.webkit.WebView;
    import android.widget.Button;

    public class MainActivity extends AppCompatActivity {

    private WebView bView;

    @Override
    public void onCreate(Bundle savedInstanceState){
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    bView = (WebView) findViewById(R.id.browserView);
    bView.loadUrl("http://192.168.1.108:8081");
    bView.setPadding(0, 0, 0, 0);
    bView.getSettings().setLoadWithOverviewMode(true);
    bView.getSettings().setUseWideViewPort(true);
    Button exitButton = (Button) findViewById(R.id.exit);
    exitButton.setOnClickListener(new View.OnClickListener(){
    public void onClick(View v){
    finish();
    }
    });
    if (ContextCompat.checkSelfPermission(getApplicationContext(), Manifest.permission.ACCESS_WIFI_STATE) != PackageManager.PERMISSION_GRANTED) {
    ActivityCompat.requestPermissions(this, new String[]{Manifest.permission.ACCESS_WIFI_STATE }, 1);
    }
    }

    @Override
    public void onBackPressed() {
    finish();
    }

    }


    activity_main.xml

    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#000000"
    tools:context="com.user.frontdoor.MainActivity">

    <Button
    android:id="@+id/exit"
    style="?android:attr/buttonStyleSmall"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentTop="true"
    android:layout_centerHorizontal="true"
    android:background="@drawable/button"
    android:text="@string/exit"
    android:textColor="#ffff00" />

    <WebView
    android:id="@+id/browserView"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:layout_alignParentEnd="true"
    android:layout_alignParentStart="true"
    android:layout_below="@+id/exit"
    android:layout_marginTop="4dp" />

    </RelativeLayout>


    AndroidManifest.xml

    <?xml version="1.0" encoding="utf-8"?>
    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.user.frontdoor" >
    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    <application
    android:allowBackup="true"
    android:icon="@mipmap/camera"
    android:label="@string/app_name"
    android:supportsRtl="true"
    android:theme="@style/AppTheme" >
    <activity android:name=".MainActivity" android:label="@string/app_name">
    <intent-enhancement>
    <action android:name="android.intent.action.MAIN" />
    <category android:name="android.intent.category.LAUNCHER" />
    </intent-enhancement>
    </activity>
    </application>
    </manifest>


    button.xml

    <?xml version="1.0" encoding="utf-8"?>
    <selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_pressed="true">
    <shape android:shape="rectangle">
    <stroke android:width="1dip" android:color="#080808"/>
    <gradient android:angle="-90" android:startColor="#161616" android:endColor="#161616"/>
    <padding android:left="5dip" android:right="5dip" />
    </shape>
    </item>
    <item android:state_focused="true">
    <shape android:shape="rectangle">
    <stroke android:width="1dip" android:color="#080808"/>
    <solid android:color="#58857e"/>
    <padding android:left="5dip" android:right="5dip" />
    </shape>
    </item>
    <item>
    <shape android:shape="rectangle">
    <stroke android:width="1dip" android:color="#080808"/>
    <gradient android:angle="-90" android:startColor="#121212" android:endColor="#121212"/>
    <padding android:left="5dip" android:right="5dip" />
    </shape>
    </item>
    </selector>
  8. #28
    bling bling Dark Matter
    calm down
  9. #29
    SBTlauien African Astronaut
    Originally posted by bling bling calm down

    Its so exciting though.
  10. #30
    bling bling Dark Matter
    i meant the guy b4 but can u help me make a paki cam pls
  11. #31
    bling bling Dark Matter
    i am serious
  12. #32
    SBTlauien African Astronaut
    A paki cam?
  13. #33
    mashlehash victim of incest [my perspicuously dependant flavourlessness]
    Catch those niggers
  14. #34
    Lanny Bird of Courage
    oh fuck, I'm an alt, such identity crisis right now
  15. #35
    mashlehash victim of incest [my perspicuously dependant flavourlessness]
    Did you catch any niggers?
  16. #36
    SBTlauien African Astronaut
    Originally posted by mashlehash Did you catch any niggers?

    Only white boys stealing here.
Jump to Top