Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(142)

Side by Side Diff: webrtc/examples/androidapp/res/menu/connect_menu.xml

Issue 1970783002: New UI for AppRTC Android Demo that is easier to use (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Styling according to comments Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 <menu xmlns:android="http://schemas.android.com/apk/res/android" > 1 <menu xmlns:android="http://schemas.android.com/apk/res/android"
2 xmlns:app="http://schemas.android.com/apk/res-auto">
3 <item
4 android:id="@+id/action_loopback"
5 android:icon="@drawable/ic_loopback_call"
6 app:showAsAction="always"
7 android:title="@string/action_loopback"/>
2 <item 8 <item
3 android:id="@+id/action_settings" 9 android:id="@+id/action_settings"
4 android:orderInCategory="100" 10 android:orderInCategory="100"
5 android:icon="@android:drawable/ic_menu_preferences" 11 android:icon="@android:drawable/ic_menu_preferences"
6 android:showAsAction="ifRoom" 12 app:showAsAction="ifRoom"
7 android:title="@string/action_settings"/> 13 android:title="@string/action_settings"/>
8 </menu> 14 </menu>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698