Commit 62948c3e authored by fallenstardust's avatar fallenstardust

CardOt 过滤 非独有卡

卡片详情归属允许换行显示
parent 4218b64d
......@@ -263,6 +263,8 @@ public class StringManager implements Closeable {
StringBuilder stringBuilder = new StringBuilder();
boolean first = true;
for(CardOt _ot : CardOt.values()){
if (_ot.getId() == CardOt.NO_EXCLUSIVE.getId())
continue;
if((_ot.getId() & ot) != 0){
if(first){
first = false;
......
......@@ -192,7 +192,6 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="5dp"
android:singleLine="true"
android:textAppearance="@style/TextAppearance.AppCompat.Body1"
android:textColor="@color/white"
tools:text="Test" />
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment