Increased history row size + go back to home when pressing menu while in call
This commit is contained in:
parent
a32c39f9ce
commit
d34f98b91f
2 changed files with 3 additions and 2 deletions
|
@ -19,12 +19,13 @@
|
||||||
<TextView
|
<TextView
|
||||||
android:id="@+id/sipUri"
|
android:id="@+id/sipUri"
|
||||||
android:lines="1"
|
android:lines="1"
|
||||||
|
android:textSize="30sp"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_weight="0.2"
|
android:layout_weight="0.2"
|
||||||
android:textAppearance="?android:attr/textAppearanceLarge"
|
android:textAppearance="?android:attr/textAppearanceLarge"
|
||||||
android:textColor="@android:color/black"
|
android:textColor="@android:color/black"
|
||||||
android:layout_marginLeft="5dp" />
|
android:layout_marginLeft="10dp" />
|
||||||
|
|
||||||
<ImageView
|
<ImageView
|
||||||
android:contentDescription="@string/content_description_detail"
|
android:contentDescription="@string/content_description_detail"
|
||||||
|
|
|
@ -1106,7 +1106,7 @@ public class InCallActivity extends FragmentActivity implements
|
||||||
@Override
|
@Override
|
||||||
public boolean onKeyDown(int keyCode, KeyEvent event) {
|
public boolean onKeyDown(int keyCode, KeyEvent event) {
|
||||||
if (LinphoneUtils.onKeyVolumeAdjust(keyCode)) return true;
|
if (LinphoneUtils.onKeyVolumeAdjust(keyCode)) return true;
|
||||||
// if (LinphoneUtils.onKeyBackGoHome(this, keyCode, event)) return true;
|
if (LinphoneUtils.onKeyBackGoHome(this, keyCode, event)) return true;
|
||||||
return super.onKeyDown(keyCode, event);
|
return super.onKeyDown(keyCode, event);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue