作为.NET开发人员,我一直在使用3个C#Windows应用程序(数据库更新,爬网数据以及下载Excel文件以导入数据库)。我已经分别创建了这3个项目,这3个应用程序在后台运行,并且仅在桌面上显示每个通知。
我的问题:
答案 0 :(得分:0)
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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:paddingBottom="16dp"
android:paddingLeft="16dp"
android:paddingRight="16dp"
android:paddingTop="16dp"
tools:context=".Body1">
<ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content">
<com.ms.square.android.expandabletextview.ExpandableTextView
android:id="@+id/expandable_text_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:maxCollapsedLines="1"
app:animDuration="200"
>
<TextView
android:id="@+id/expandable_text"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_marginTop="16dp"
android:textColor="#666"
android:textSize="16sp"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<ImageButton
android:id="@+id/expand_collapse"
android:layout_gravity="right|bottom"
android:background="@android:color/transparent"
android:padding="16dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</com.ms.square.android.expandabletextview.ExpandableTextView>
<com.ms.square.android.expandabletextview.ExpandableTextView
android:id="@+id/expandable_text_view2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:maxCollapsedLines="1"
app:animDuration="200"
>
<TextView
android:id="@+id/expandable_text2"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_marginTop="16dp"
android:textColor="#666"
android:textSize="16sp"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<ImageButton
android:id="@+id/expand_collapse_two"
android:layout_gravity="right|bottom"
android:background="@android:color/transparent"
android:padding="16dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</com.ms.square.android.expandabletextview.ExpandableTextView>
</ScrollView>
</LinearLayout>
,如果是,请更新所需内容并更新import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import com.ms.square.android.expandabletextview.ExpandableTextView;
public class Body1 extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_body1);
ExpandableTextView expandableTextView1 = (ExpandableTextView) findViewById(R.id.expandable_text_view);
expandableTextView1.setText(getString(R.string.text1));
ExpandableTextView expandableTextView2 = (ExpandableTextView) findViewById(R.id.expandable_text_view2);
expandableTextView2.setText(getString(R.string.text2));
}
}
。这样,如果您关闭计算机(应用程序)并再次启动计算机(自动运行应用程序),它将检查它是否应该被更新,如果已经更新,则可以完成工作由于这个问题范围太广,应该关闭,因此我没有回答的项目很少,但是由于我是新手,所以我为您提供了一些建议。