Browse Source

母死淘数据分析

master
lh 7 years ago
parent
commit
83c34c56f8
4 changed files with 61 additions and 0 deletions
  1. +2
    -0
      app/src/main/AndroidManifest.xml
  2. +9
    -0
      app/src/main/java/com/qhclh/ytzh/home/RpcUrl.java
  3. +50
    -0
      app/src/main/java/com/qhclh/ytzh/work/Poultrydailyreport/PoultryDataChartActivity.java
  4. +0
    -0
      app/src/main/res/layout/act_poultry_data_chart.xml

+ 2
- 0
app/src/main/AndroidManifest.xml View File

@ -171,6 +171,8 @@
<activity
android:name=".work.Poultrydailyreport.PoultryDailyReportActivity"
android:screenOrientation="portrait" />
<activity android:name=".work.Poultrydailyreport.PoultryDataChartActivity"
android:screenOrientation="portrait" />
<!-- 设置竖屏扫码 -->
<activity
android:name=".work.scan.ScanActivity"


+ 9
- 0
app/src/main/java/com/qhclh/ytzh/home/RpcUrl.java View File

@ -118,6 +118,15 @@ public class RpcUrl {
public static String WeighRpc_check ="/MainSystem/B3PoultryBreed/Rpcs/WeighRpc/Check";
public static String BatchTotalCount1 = "/MainSystem/B3_ZhongHui/Rpcs/HatchReportRpc/BatchTotalCount1";
public static String BatchTotalCount1_fanhui = "/MainSystem/B3_ZhongHui/Rpcs/BatchTotalInfoGroup";
public static String BatchTotalCount1_details = "/MainSystem/B3_ZhongHui/Rpcs/BatchTotalInfo";
public static String BatchTotalCount2 = "/MainSystem/B3_ZhongHui/Rpcs/HatchReportRpc/BatchTotalCount2";
public static String HouseTotalInfoCount1 = "/MainSystem/B3_ZhongHui/Rpcs/HatchReportRpc/HouseTotalInfoCount1";
public static String HouseTotalInfoCount1_fanhui = "/MainSystem/B3_ZhongHui/Rpcs/HouseTotalInfo";
public static String HouseTotalInfoCount2 = "/MainSystem/B3_ZhongHui/Rpcs/HatchReportRpc/HouseTotalInfoCount2";
public static String HouseView1 = "/MainSystem/B3_ZhongHui/Rpcs/HatchReportRpc/HouseView1";
}

+ 50
- 0
app/src/main/java/com/qhclh/ytzh/work/Poultrydailyreport/PoultryDataChartActivity.java View File

@ -0,0 +1,50 @@
package com.qhclh.ytzh.work.Poultrydailyreport;
import android.support.v7.widget.Toolbar;
import android.widget.LinearLayout;
import android.widget.TextView;
import com.qhclh.ytzh.R;
import com.qhclh.ytzh.base.BaseActivity;
import butterknife.BindView;
import lecho.lib.hellocharts.view.LineChartView;
/**
* Created by 青花瓷 on 2018/3/23.
*/
public class PoultryDataChartActivity extends BaseActivity {
@BindView(R.id.toolbar)
Toolbar mToolbar;
@BindView(R.id.line_chart_poultry)
LineChartView lineChart;
@BindView(R.id.ll_musitao)
LinearLayout ll_musitao;
@BindView(R.id.ll_muzhiliaoliang)
LinearLayout ll_muzhiliaoliang;
@BindView(R.id.ll_chandanlv)
LinearLayout ll_chandanlv;
@Override
protected int setLayoutId() {
return R.layout.act_poultry_data_chart;
}
@Override
protected void initView() {
}
@Override
protected void initData() {
}
@Override
protected void initOper() {
}
}

app/src/main/res/layout/act_poultry_date_chart.xml → app/src/main/res/layout/act_poultry_data_chart.xml View File


Loading…
Cancel
Save