Skip to content

Commit

Permalink
Create ProfitLossView.md
Browse files Browse the repository at this point in the history
  • Loading branch information
yangsanning authored Jun 4, 2020
1 parent c7c2b27 commit d992856
Showing 1 changed file with 50 additions and 0 deletions.
50 changes: 50 additions & 0 deletions readmes/ProfitLossView.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
## ProfitLossView

## 效果预览

| [ProfitLossView] |
| ------------------------------- |
| <img src="images/profitlossview.gif" height="512" /> |


## 主要文件
| 名字 | 摘要 |
| ---------------- | -------------- |
| [ProfitLossView] | 盈亏额/盈亏率 |


### 1. 基本用法

#### 1.1 布局中添加
```android
<ysn.com.stock.view.ProfitLossView
android:id="@+id/profit_loss_activity_view2"
android:layout_width="match_parent"
android:layout_height="200dp"
android:layout_marginTop="20dp"
ysn:fsv_is_enabled_bottom_tab="true"
ysn:fsv_is_enabled_slide="true" />
```

#### 1.2 设置数据
```android;
profitLossView.setUnitInterceptor(new ProfitLossInterceptor())
.setData(data.getAmount(), data.getDate());
```


### 2. 配置属性([Attributes])

#### ProfitLossView
|name|format|description|
|:---:|:---:|:---:|
| plv_line_color | color | 线颜色 |
| plv_text_color | color | 文本颜色 |
| plv_value_line_color | color | 值曲线的颜色 |
| plv_slide_text_color | color | 滑动区域文字颜色 |
| plv_slide_bg_color | dimension | 滑动区域背景颜色 |


[ProfitLossView]:https://github.com/yangsanning/StockView/blob/master/stock/src/main/java/ysn/com/stock/view/ProfitLossView.java
[Attributes]:https://github.com/yangsanning/StockView/blob/master/stock/src/main/res/values/attrs_profit_loss.xml

0 comments on commit d992856

Please sign in to comment.