first commit

master
dushilian 6 years ago
parent 08ef7152c4
commit 9c5dd97542

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="Encoding">
<file url="file://$PROJECT_DIR$/app/src/main/res/asset/functonIntr.txt" charset="UTF-8" />
</component>
</project>

@ -29,7 +29,7 @@
</value>
</option>
</component>
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_8" project-jdk-name="1.8" project-jdk-type="JavaSDK">
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_7" project-jdk-name="1.8" project-jdk-type="JavaSDK">
<output url="file://$PROJECT_DIR$/build/classes" />
</component>
<component name="ProjectType">

@ -9,14 +9,15 @@
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".FunctionActivity">
<activity android:name=".IndexActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".IndexActivity"></activity>
<activity android:name=".FunctionActivity"></activity>
<activity android:name=".AboutappActivity"></activity>
</application>
</manifest>

@ -0,0 +1,17 @@
package com.example.administrator.test;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.text.method.ScrollingMovementMethod;
import android.widget.TextView;
public class AboutappActivity extends AppCompatActivity {
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.help_aboutapp);
TextView tv;
tv = (TextView) findViewById(R.id.abouttext);
// 设置当前textView内容过多的时候可以滚动
tv.setMovementMethod(ScrollingMovementMethod.getInstance());
}
}

@ -2,24 +2,23 @@ package com.example.administrator.test;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.text.method.ScrollingMovementMethod;
import android.widget.ArrayAdapter;
import android.widget.ListView;
import android.widget.TextView;
import java.util.Collections;
import static com.example.administrator.test.R.*;
public class FunctionActivity extends AppCompatActivity {
private String function1="1.备忘录:用于快速记录语音消息和文字备注。主界面可以浏览已有的备忘录消息列表,点击右上角的加号新建一条备忘录记录,点击下方按钮对录音进行操作。";
private String function2="2.日记:提供文字,图片和语音合并记录的形式。主界面可以浏览已有的日记消息列表,点击右下角的悬浮钮新建一条日记记录,选择模板进入编辑模式。";
private String function3="3.共享时刻:支持实时在线阅读共享语音消息的平台。用户可以将语音,文字和图片任意组合并发表,与他人共享精彩时光。主界面可以阅读关注人发表的消息,也可以切换消息界面或个人发表语音记录,点击右上角的加号新建一条语音圈消息。";
private String function4="4.我的:进入用户个人信息管理界面,可以切换账号,更改密码,查看帮助,进行问题反馈等。";
private String function5="本app还在开发中欢迎用户体验并反馈意见帮助我们进一步完善功能。";
private String[] functionIntro={function1,function2,function3,function4,function5};
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(layout.help_function);
ArrayAdapter<String> adapter=new ArrayAdapter<String>(FunctionActivity.this,android.R.layout.simple_list_item_1,functionIntro);
ListView listView=(ListView) findViewById(id.functiontext);
listView.setAdapter(adapter);
TextView tv;
tv = (TextView) findViewById(id.functiontext);
// 设置当前textView内容过多的时候可以滚动
tv.setMovementMethod(ScrollingMovementMethod.getInstance());
}
}

@ -2,12 +2,19 @@ package com.example.administrator.test;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.widget.AbsListView;
import android.widget.TextView;
public class IndexActivity extends AppCompatActivity {
import java.io.IOException;
import java.io.InputStream;
import java.io.UnsupportedEncodingException;
import java.util.Observable;
public class IndexActivity extends AppCompatActivity{
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.index_my);
setContentView(R.layout.activity_index);
}
}

@ -0,0 +1,11 @@
package com.example.administrator.test;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
public class MemoActivity extends AppCompatActivity {
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.index_memo);
}
}

@ -1,99 +1,314 @@
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/indexbackground"
tools:layout_editor_absoluteY="25dp"
>
<LinearLayout
android:background="@drawable/indexbackground">
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_weight="1">
<ImageView
android:id="@+id/indexmemopng"
android:layout_width="140dp"
android:layout_height="140dp"
android:src="@drawable/indexmemo" />
android:layout_height="match_parent"
android:orientation="vertical">
<TextView
android:id="@+id/indexmemotext"
android:layout_width="140dp"
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="备忘录"
android:textColor="#000"
android:textSize="20dp"
android:layout_gravity="left"
android:textAlignment="center"/>
android:orientation="vertical"
android:layout_weight="1">
<ImageView
android:id="@+id/indexmemopng"
android:layout_width="140dp"
android:layout_height="140dp"
android:src="@drawable/indexmemo" />
<TextView
android:id="@+id/indexmemotext"
android:layout_width="140dp"
android:layout_height="wrap_content"
android:text="备忘录"
android:textColor="#000"
android:textSize="20dp"
android:layout_gravity="left"
android:textAlignment="center"/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_weight="1">
<ImageView
android:id="@+id/indexdiarypng"
android:layout_width="140dp"
android:layout_height="140dp"
android:src="@drawable/indexdiary"
android:layout_gravity="center"/>
<TextView
android:id="@+id/indexdiarytext"
android:layout_width="140dp"
android:layout_height="wrap_content"
android:text="日记"
android:textColor="#000"
android:textSize="20dp"
android:layout_gravity="center"
android:textAlignment="center"/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_weight="1">
<ImageView
android:id="@+id/indexsharepng"
android:layout_width="140dp"
android:layout_height="140dp"
android:src="@drawable/indexshare"
android:layout_gravity="right"/>
<TextView
android:id="@+id/indexsharetext"
android:layout_width="140dp"
android:layout_height="wrap_content"
android:text="分享时刻"
android:textColor="#000"
android:textSize="20dp"
android:layout_gravity="right"
android:textAlignment="center"/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="0.5">
<ImageView
android:id="@+id/indexmyng"
android:layout_width="90dp"
android:layout_height="90dp"
android:layout_marginStart="8dp"
android:layout_marginBottom="8dp"
android:src="@drawable/indexmy"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent"
tools:ignore="MissingConstraints" />
</LinearLayout>
</LinearLayout>
</FrameLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#fff"
android:orientation="vertical"
android:layout_gravity="start">
<TextView
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.5"
android:background="#abe9fcbb"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_weight="1">
android:orientation="horizontal"
android:background="#abe9fcbb">
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="0.2" />
<ImageView
android:id="@+id/indexdiarypng"
android:layout_width="140dp"
android:layout_height="140dp"
android:src="@drawable/indexdiary"
android:id="@+id/touxiang"
android:layout_width="120dp"
android:layout_height="120dp"
android:src="@mipmap/choosehead" />
<!--用户名!-->
<TextView
android:id="@+id/yonghuming"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_above="@+id/touxiang"
android:text="用户名"
android:textColor="#000000"
android:textSize="30dp"
android:layout_gravity="center"/>
<TextView
android:id="@+id/indexdiarytext"
android:layout_width="140dp"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:text="日记"
android:textColor="#000"
android:textSize="20dp"
android:layout_gravity="center"
android:textAlignment="center"/>
android:layout_weight="1.5" />
</LinearLayout>
<LinearLayout
android:id="@+id/linearLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:layout_marginBottom="8dp"
android:orientation="vertical"
android:layout_weight="1">
<ImageView
android:id="@+id/indexsharepng"
android:layout_width="140dp"
android:layout_height="140dp"
android:src="@drawable/indexshare"
android:layout_gravity="right"/>
<TextView
android:id="@+id/indexsharetext"
android:layout_width="140dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintTop_toTopOf="parent"
android:background="#c1ffffff">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="0.2" />
<ImageView
android:layout_width="60dp"
android:layout_height="60dp"
android:src="@drawable/myaccount" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="账号切换"
android:textColor="#696767"
android:textSize="40dp" />
<TextView
android:id="@+id/kong1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1" />
<TextView
android:id="@+id/jiantou1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=">"
android:textColor="#696767"
android:textSize="40dp" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="分享时刻"
android:textColor="#000"
android:textSize="20dp"
android:layout_gravity="right"
android:textAlignment="center"/>
android:orientation="horizontal">
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="0.2" />
<ImageView
android:layout_width="60dp"
android:layout_height="60dp"
android:src="@drawable/mydata" />
<TextView
android:id="@+id/datatext"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="修改资料"
android:textColor="#696767"
android:textSize="40dp" />
<TextView
android:id="@+id/kong2"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1" />
<TextView
android:id="@+id/jiantou2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=">"
android:textColor="#696767"
android:textSize="40dp" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="0.2" />
<ImageView
android:layout_width="60dp"
android:layout_height="60dp"
android:src="@drawable/mypassword" />
<TextView
android:id="@+id/passwordtext"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="更改密码"
android:textColor="#696767"
android:textSize="40dp" />
<TextView
android:id="@+id/kong3"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1" />
<TextView
android:id="@+id/jiantou3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=">"
android:textColor="#696767"
android:textSize="40dp" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="0.2" />
<ImageView
android:layout_width="60dp"
android:layout_height="60dp"
android:src="@drawable/myhelp" />
<TextView
android:id="@+id/helptext"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="帮助与反馈"
android:textColor="#696767"
android:textSize="40dp" />
<TextView
android:id="@+id/kong4"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1" />
<TextView
android:id="@+id/jiantou4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=">"
android:textColor="#696767"
android:textSize="40dp" />
</LinearLayout>
</LinearLayout>
<LinearLayout
<TextView
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.5" />
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="0.5">
<ImageView
android:id="@+id/indexmyng"
android:layout_width="90dp"
android:layout_height="90dp"
android:layout_marginStart="8dp"
android:layout_marginBottom="8dp"
android:src="@drawable/indexmy"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent"
tools:ignore="MissingConstraints" />
</LinearLayout>
android:layout_gravity="right"
android:background="#e137b7b5"
android:text="退出APP"
android:textSize="20dp"
android:textColor="#fff"/>
</LinearLayout>
</android.support.constraint.ConstraintLayout>
</android.support.v4.widget.DrawerLayout>

@ -0,0 +1,67 @@
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.LinearLayoutCompat
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/allbackground30"
android:orientation="vertical">
<LinearLayout
android:id="@+id/linearLayout2"
android:layout_width="match_parent"
android:layout_height="50dp"
android:background="#01644a"
android:orientation="horizontal">
<ImageView
android:id="@+id/backmypng"
android:layout_width="30dp"
android:layout_height="match_parent"
android:src="@drawable/whiteback" />
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1" />
<TextView
android:id="@+id/onetext"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="10dp"
android:text="关于音之轨迹"
android:textColor="#fff"
android:textSize="25dp" />
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1" />
<TextView
android:layout_width="30dp"
android:layout_height="wrap_content" />
</LinearLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#5efdf9f9">
<TextView
android:id="@+id/abouttext"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/aboutapp"
android:textColor="#585454"
android:padding="30px"
android:textSize="30dp"
android:singleLine="false"
android:scrollbars="vertical"/>
</LinearLayout>
</android.support.v7.widget.LinearLayoutCompat>

@ -4,7 +4,9 @@
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
android:layout_height="match_parent"
android:background="@drawable/allbackground30"
android:orientation="vertical">
<LinearLayout
android:id="@+id/linearLayout2"
@ -29,7 +31,7 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="10dp"
android:text="帮助与反馈"
android:text="功能介绍"
android:textColor="#fff"
android:textSize="25dp" />
@ -43,16 +45,23 @@
android:layout_height="wrap_content" />
</LinearLayout>
<LinearLayout
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#5efdf9f9">
<TextView
android:id="@+id/functiontext"
android:layout_width="match_parent"
android:layout_height="wrap_content">
android:layout_height="wrap_content"
<ListView
android:id="@+id/functiontext"
android:layout_width="match_parent"
android:layout_height="wrap_content">
android:text="@string/functionIntr"
android:textColor="#585454"
android:padding="30px"
android:textSize="30dp"
android:singleLine="false"
android:scrollbars="vertical"/>
</LinearLayout>
</ListView>
</LinearLayout>
</android.support.v7.widget.LinearLayoutCompat>

@ -1,48 +1,88 @@
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/allbackground">
android:background="@drawable/allbackground"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="50dp"
android:orientation="horizontal"
android:background="#fff">
android:layout_height="wrap_content"
android:orientation="vertical">
<ImageView
android:id="@+id/backindexpng"
android:layout_width="30dp"
android:layout_height="match_parent"
android:src="@drawable/backleftblack"/>
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="50dp"
android:orientation="horizontal"
android:background="#fff">
<TextView
android:id="@+id/onetext"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="22sp"
android:textColor="#000"
android:padding="10dp"
android:text="@string/memotitle" />
<ImageView
android:id="@+id/backindexpng"
android:layout_width="30dp"
android:layout_height="match_parent"
android:src="@drawable/backleftblack"/>
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1" />
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1" />
<TextView
android:id="@+id/onetext"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="22sp"
android:textColor="#000"
android:padding="10dp"
android:text="@string/memotitle" />
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1" />
<ImageView
android:id="@+id/imageView1"
android:layout_width="30dp"
android:layout_height="match_parent"
android:src="@drawable/addblack" />
</LinearLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<ListView
android:id="@+id/memotext"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="#c4f5f3c4">
</ListView>
<ListView
android:id="@+id/memorecord"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="#ccf7dfdf">
</ListView>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="75dp"
android:orientation="horizontal"
android:gravity="center"
android:background="#cee4dfdf">
<Button
android:id="@+id/Recordstart"
android:layout_width="125dp"
android:layout_height="65dp"
android:text="+ 录音"
android:background="#e169bed1"
android:textSize="20dp"
android:textColor="#585252" />
<Button
android:id="@+id/createButton"
android:layout_width="125dp"
android:layout_height="65dp"
android:text="+ 备忘录"
android:background="#e169bed1"
android:textSize="20dp"
android:textColor="#585252"/>
</LinearLayout>
</LinearLayout>
</android.support.constraint.ConstraintLayout>

@ -1,11 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
<android.support.v7.widget.LinearLayoutCompat
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/allbackground30">
android:background="#fff"
android:orientation="vertical">
<LinearLayout
android:id="@+id/linearLayout3"
@ -45,32 +46,41 @@
</LinearLayout>
<ImageView
android:id="@+id/touxiang"
android:layout_width="120dp"
android:layout_height="120dp"
android:layout_gravity="center"
android:layout_marginStart="8dp"
android:layout_marginBottom="8dp"
android:src="@mipmap/choosehead"
app:layout_constraintBottom_toTopOf="@+id/linearLayout"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/linearLayout3"
tools:ignore="MissingConstraints" />
<!--用户名!-->
<TextView
android:id="@+id/yonghuming"
android:layout_width="wrap_content"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.5"
android:background="#abe9fcbb"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_above="@+id/touxiang"
android:layout_marginStart="8dp"
android:text="用户名"
android:textColor="#000000"
android:textSize="30dp"
app:layout_constraintBottom_toBottomOf="@+id/touxiang"
app:layout_constraintStart_toEndOf="@+id/touxiang"
app:layout_constraintTop_toTopOf="@+id/touxiang"
tools:ignore="MissingConstraints" />
android:orientation="horizontal"
android:background="#abe9fcbb">
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="0.2" />
<ImageView
android:id="@+id/touxiang"
android:layout_width="120dp"
android:layout_height="120dp"
android:src="@mipmap/choosehead" />
<!--用户名!-->
<TextView
android:id="@+id/yonghuming"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_above="@+id/touxiang"
android:text="用户名"
android:textColor="#000000"
android:textSize="30dp"
android:layout_gravity="center"/>
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1.5" />
</LinearLayout>
<LinearLayout
android:id="@+id/linearLayout"
@ -229,21 +239,17 @@
</LinearLayout>
<TextView
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.5" />
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="8dp"
android:layout_marginBottom="8dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/linearLayout"
android:layout_gravity="right"
android:background="#e137b7b5"
android:text="退出APP"
android:textSize="20dp"
android:textColor="#fff"/>
</android.support.constraint.ConstraintLayout>
</android.support.v7.widget.LinearLayoutCompat>

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:id="@+id/add_record"
android:title="录音"/>
<item
android:id="@+id/add_text"
android:title="便签"/>
</menu>

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 62 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

@ -0,0 +1,49 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="functionIntr">1.备忘录:\n用于快速记录语音消息和文字备注。主界面可以浏览已有的备忘录消息列表点击右上角的加号新建一条备忘录记录点击下方按钮对录音进行操作。\n
2.日记:\n提供文字图片和语音合并记录的形式。主界面可以浏览已有的日记消息列表点击右下角的悬浮钮新建一条日记记录选择模板进入编辑模式。\n
3.共享时刻:\n支持实时在线阅读共享语音消息的平台。用户可以将语音文字和图片任意组合并发表与他人共享精彩时光。
主界面可以阅读关注人发表的消息,也可以切换消息界面或个人发表语音记录,点击右上角的加号新建一条语音圈消息。\n
4.我的:\n进入用户个人信息管理界面可以切换账号更改密码查看帮助进行问题反馈等\n
本app还在开发中欢迎用户体验并反馈意见帮助我们进一步完善功能。
</string>
<string name="aboutapp">版本号1.1.0\n
本app是一款集语音文字图片于一体的多形式记录载体旨在为用户使用语音记事提供便捷并易于分享。\n\n
服务权限:您在使用本软件和/或本服务的过程中,应遵守相关法律法规、用户协议、规则规范等,不得从事包括但不限于以下任何行为,也不得为以下任何行为提供便利:
您在使用本服务时须遵守法律法规,不得制作、复制、发布、传播含有下列内容的信息或从事相关行为,也不得为制作、复制、发布、传播含有下列内容的信息或从事相关行为提供便利:\n
1反对宪法所确定的基本原则的。\n
2危害国家安全泄露国家秘密颠覆国家政权破坏国家统一的。\n
3损害国家荣誉和利益的。\n
4煽动民族仇恨、民族歧视破坏民族团结的。\n
5破坏国家宗教政策宣扬邪教和封建迷信的。\n
6散布谣言扰乱社会秩序破坏社会稳定的。\n
7散布淫秽、色情、赌博、暴力、凶杀、恐怖或者教唆犯罪的。\n
8侮辱或者诽谤他人侵害他人合法权益的。\n
9违反法律法规底线、社会主义制度底线、国家利益底线、公民合法权益底线、社会公共秩序底线、道德风尚底线和信息真实性底线的“七条底线”要求的。\n
隐私权政策:我们竭尽全力通过合理有效的方法保证用户的所有消息的安全性,隐私性,防止用户的信息泄露,损毁,丢失;
我们为您提供便利的信息管理选项,以便您做出合适的选择,管理您的个人信息;我们严格遵照法律法规,保护您的信息传输安全,仅审核公开发表的信息,收集必要的信息。\n
创作团队由湖南师范大学16级在校生团队制作</string>
<string name="data">2018年【测试用】</string>
<string name="memot1">1标题标题标题标题标题标题【测试用】</string>
<string name="memot2">2标题标题标题标题标题标题【测试用】</string>
<string name="memot3">3标题标题标题标题标题标题【测试用】</string>
<string name="memot4">4标题标题标题标题标题标题【测试用】</string>
<string name="memot5">5标题标题标题标题标题标题【测试用】</string>
<string name="data1">2018年1月1日</string>
<string name="addmemotitle">新建便签</string>
<string name="complete">完成</string>
<string name="recordtime1">00:00:00【测试用】</string>
<string name="recordtime2">00:00:00【测试用】</string>
<string name="xiaoxi">消息</string>
<string name="pinglun">评论</string>
<string name="tongzhi">通知</string>
<string name="zan"></string>
<string name="newfan">新的粉丝</string>
<string name="shouyet">首页</string>
<string name="luyint">录音</string>
<string name="xiaoxit">消息</string>
<string name="messagetext">消息</string>
<string name="wodet">我的</string>
<string name="diarytitle">日记列表</string>
</resources>

@ -7,28 +7,7 @@
<string name="resPwd">重置密码</string>
<string name="memotitle">备忘录</string>
<string name="back"><![CDATA[<返回]]></string>
<string name="data">2018年【测试用】</string>
<string name="memot1">1标题标题标题标题标题标题【测试用】</string>
<string name="memot2">2标题标题标题标题标题标题【测试用】</string>
<string name="memot3">3标题标题标题标题标题标题【测试用】</string>
<string name="memot4">4标题标题标题标题标题标题【测试用】</string>
<string name="memot5">5标题标题标题标题标题标题【测试用】</string>
<string name="data1">2018年1月1日</string>
<string name="addmemotitle">新建便签</string>
<string name="complete">完成</string>
<string name="recordtime1">00:00:00【测试用】</string>
<string name="recordtime2">00:00:00【测试用】</string>
<string name="xiaoxi">消息</string>
<string name="pinglun">评论</string>
<string name="tongzhi">通知</string>
<string name="zan"></string>
<string name="newfan">新的粉丝</string>
<string name="shouyet">首页</string>
<string name="luyint">录音</string>
<string name="xiaoxit">消息</string>
<string name="messagetext">消息</string>
<string name="wodet">我的</string>
<string name="diarytitle">日记列表</string>
<string name="caogao">草稿</string>
<string name="liaotian">聊天</string>
<string name="confirm">重置密码</string>

Loading…
Cancel
Save