Commit ca98a9be by Kim Jinsung

THETAカメラ画面のEV文字色変更

露出設定失敗時、インジケーター非表示問題対応
parent 30444f63
......@@ -68,6 +68,7 @@
android:layout_height="match_parent"
android:gravity="center_vertical"
android:text="EV:1.3"
android:textColor="@android:color/white"
android:textSize="18sp" />
<SeekBar
......
......@@ -172,6 +172,8 @@ public abstract class ABVActivity extends Activity {
public void changeProgressPopup(String msg) {
if (progressDialog != null && progressDialog.isShowing()) {
progressDialog.setMessage(msg);
} else {
showProgressPopup(msg);
}
}
......
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