1
0
mirror of https://github.com/moparisthebest/Yaaic synced 2025-01-07 03:38:10 -05:00

Moved activities to org.yaaic.activity package

This commit is contained in:
Sebastian Kaspari 2010-03-24 18:48:38 +01:00
parent 6e2c835869
commit acb09a3b8a
7 changed files with 13 additions and 12 deletions

View File

@ -25,7 +25,7 @@ along with Yaaic. If not, see <http://www.gnu.org/licenses/>.
android:versionName="@string/app_version">
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity
android:name=".view.ServersActivity"
android:name=".activity.ServersActivity"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
@ -33,7 +33,7 @@ along with Yaaic. If not, see <http://www.gnu.org/licenses/>.
</intent-filter>
</activity>
<activity
android:name=".view.AddServerActivity"
android:name=".activity.AddServerActivity"
android:label="@string/add_server_label">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
@ -43,20 +43,20 @@ along with Yaaic. If not, see <http://www.gnu.org/licenses/>.
</intent-filter>
</activity>
<activity
android:name=".view.ConversationActivity"
android:name=".activity.ConversationActivity"
android:windowSoftInputMode="adjustResize|stateHidden">
</activity>
<activity
android:name=".view.AboutActivity"
android:name=".activity.AboutActivity"
android:label="@string/about_label"
android:theme="@android:style/Theme.Dialog">
</activity>
<activity
android:name=".view.SettingsActivity"
android:name=".activity.SettingsActivity"
android:label="@string/settings_label">
</activity>
<activity
android:name=".view.JoinActivity"
android:name=".activity.JoinActivity"
android:label="@string/join_label"
android:theme="@android:style/Theme.Dialog">
</activity>

View File

@ -18,7 +18,7 @@ GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Yaaic. If not, see <http://www.gnu.org/licenses/>.
*/
package org.yaaic.view;
package org.yaaic.activity;
import org.yaaic.R;

View File

@ -18,7 +18,7 @@ GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Yaaic. If not, see <http://www.gnu.org/licenses/>.
*/
package org.yaaic.view;
package org.yaaic.activity;
import java.util.regex.Pattern;

View File

@ -18,7 +18,7 @@ GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Yaaic. If not, see <http://www.gnu.org/licenses/>.
*/
package org.yaaic.view;
package org.yaaic.activity;
import android.app.Activity;
import android.content.ComponentName;
@ -62,6 +62,7 @@ import org.yaaic.model.Server;
import org.yaaic.model.Status;
import org.yaaic.receiver.ConversationReceiver;
import org.yaaic.receiver.ServerReceiver;
import org.yaaic.view.MessageListView;
/**
* The server view with a scrollable list of all channels

View File

@ -18,7 +18,7 @@ GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Yaaic. If not, see <http://www.gnu.org/licenses/>.
*/
package org.yaaic.view;
package org.yaaic.activity;
import org.yaaic.R;

View File

@ -18,7 +18,7 @@ GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Yaaic. If not, see <http://www.gnu.org/licenses/>.
*/
package org.yaaic.view;
package org.yaaic.activity;
import android.app.AlertDialog;
import android.app.ListActivity;

View File

@ -18,7 +18,7 @@ GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Yaaic. If not, see <http://www.gnu.org/licenses/>.
*/
package org.yaaic.view;
package org.yaaic.activity;
import org.yaaic.R;