Skip to content

Commit

Permalink
hzuapps#95 hzuapps#12 实验9:综合编程
Browse files Browse the repository at this point in the history
  • Loading branch information
isshe committed May 11, 2016
1 parent f59d813 commit fe23b3e
Show file tree
Hide file tree
Showing 6 changed files with 33 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="edu.hzuapps.androidworks.homeworks.net1314080903212">

<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">

<activity
android:name=".Net1314080903212MultiChat"
android:label="@string/app_name"
android:theme="@style/AppTheme.NoActionBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

</application>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
</manifest>
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.dell.multichat;
package edu.hzuapps.androidworks.homeworks.net1314080903212;

import android.os.Looper;
import android.os.Message;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.dell.multichat;
package package edu.hzuapps.androidworks.homeworks.net1314080903212;

import android.os.Environment;
import android.os.Handler;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.dell.multichat;
package edu.hzuapps.androidworks.homeworks.net1314080903212;

import android.app.Activity;
import android.os.Bundle;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package edu.hzuapps.androidworks.homeworks.Net1314080903212;
package edu.hzuapps.androidworks.homeworks.net1314080903212;

//import java.io.*;
import android.os.Environment;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package edu.hzuapps.androidworks.homeworks.Net1314080903212;
package edu.hzuapps.androidworks.homeworks.net1314080903212;

import android.os.Environment;
import android.provider.ContactsContract;
Expand Down

0 comments on commit fe23b3e

Please sign in to comment.