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:
parent
6e2c835869
commit
acb09a3b8a
@ -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>
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
@ -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
|
@ -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;
|
||||
|
@ -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;
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user