data

It is now

פוסט מוצג

דף אודות.

דף אודות. לא כל-כך יש לי מה לציין אך הדף עדיין בפיתוח.  חזון בלוג זה הוא: חופש , בחירה , נחת , שלום.  לנסות לעזור ולהנגיש ידע ומידע בנושאים ...

יום ראשון, 28 בדצמבר 2014

(java)Main Activity
<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:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context="com.examp.button.MainActivity" >

    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/hello_world" />

    <Button
         android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@+id/textView1"
        android:layout_marginTop="82dp"
        android:onClick="selfDestruct"
         />  
</RelativeLayout>
Main activity(java) 
package com.examp.button;

import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;



public class MainActivity extends ActionBarActivity {


private Button mSSc;
private TextView tXXt;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

mSSc = (Button) findViewById(R.id.button1);
tXXt = (TextView) findViewById(R.id.textView1);

mSSc.setOnClickListener(new View.OnClickListener() {
           public void onClick(View v) {
              tXXt.setText("ggAss");
           }
       });
}


@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}

@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
}

יום שלישי, 25 במרץ 2014

Change LogonUI

אבד הכלח על מסך הפתיחה של חלונות ותו לא,

בהמשך יש פתרונות!

מדריך קצר כיצד לשנות את תמונת הפתיחה של מע"ה של ווינדוס.

&Joy

Software:

http://www.julien-manici.com/download/?id=11


It’s fine; there’s nothing wrong with it. But sometimes a change is good so in this article we’ll show you how to change the background image behind the login screen to anything you want.

The first step is to open up the Start Menu by clicking the orb in the lower left corner of the screen.

Manual:

http://www.stumbleupon.com/su/1gUNhx/helpdeskgeek.com/windows-7/change-the-windows-7-login-screen-background-image/#

Now, in the Start Menu search box, type regedit, to open up the Registry Editor.

 

When the Registry Editor appears in the Start Menu, click the Enter key to launch it. You should see a window like this.

 

Now, right-click on the HKEY_LOCAL_MACHINE folder, and choose the Find option.

 

The search window will appear so perform a search for OEMBackground.

 

It will eventually be found underComputer\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Authentication\LogonUI\Background(you could navigate there directly, but the search function is probably quicker than typing all that into the path bar.

 

Note: it’s possible that OEMBackground doesn’t exist on your system; if this is the case, adding a new DWORD value with the name of OEMBackground will fix things.

Once you can see the OEMBackground entry, double click to reveal its properties, and change the value from 0 (the default) to 1 (which will allow us – or the computer’s OEM as intended – to change the login screen background).

 

Once this is finished you can close the Registry Editor and open up Windows Explorer. We want to go to%windir%\system32\oobe, so enter that into the path bar.

 

You’ll now need to create an info folder (all lowercase), and then a new folder, named backgrounds (also lowercase), inside the info folder. Depending on your computer’s OEM, you may find these folders already exist and may already have images in them, placed there by Dell or HP or IBM, etc.

 

Now simply select a favorite wallpaper. It should be in JPG format and less than 245 KB in size (and ideally the exact dimensions of your display to avoid stretching). Name this image backgroundDefault.jpg and place it in the backgrounds folder.

 

You can now restart, lock your screen or logout to see your new login screen.

 

Congratulations! This isn’t the simplest process, and isn’t as simple as using a program like Windows 7 Logon Background Changer, but if you want to get into the particulars regarding what programs like that are doing, this is a good way to go, if a bit more complex.