How to implement Navigation Drawer for wear os for one activity and settings fregement?











up vote
0
down vote

favorite












I need to extend my application, which basically stands for a MainActivity with a Settings page. I'm trying to implement the WearableDrawerLayout, but could not find any good examples, and I know I'm missing something, since the drawer shows up empty.



The activity_main.xml contains the main layout, and the parts for the drawer



activity_main.xml:



<?xml version="1.0" encoding="utf-8"?>
<android.support.wear.widget.drawer.WearableDrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/drawer_layout"
android:fitsSystemWindows="true">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:paddingLeft="20dp"
android:paddingRight="20dp">

<ImageView
android:id="@+id/imageView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="40dp"
android:minHeight="50dp"
android:minWidth="50dp"
android:src="@drawable/ic_alarm"
android:tint="@color/white" />

<TextView
android:id="@+id/text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/screen_percentage_05"
android:text="asd"
android:textAlignment="center"
android:textColor="@color/white"
android:textStyle="bold" />
</LinearLayout>

<android.support.wear.widget.drawer.WearableNavigationDrawerView
android:id="@+id/top_navigation_drawer"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:menu="@menu/drawer_view"/>

</android.support.wear.widget.drawer.WearableDrawerLayout>


res/menu/drawer_view.xml (for populating the navigation):



<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<group android:checkableBehavior="single">
<item
android:id="@+id/nav_camera"
android:icon="@android:drawable/ic_menu_camera"
android:title="main" />
<item
android:id="@+id/nav_gallery"
android:icon="@android:drawable/ic_menu_gallery"
android:title="settings" />
</group>
</menu>


And the MainActivity.class:



public class MainActivity extends WearableActivity {

private WearableNavigationDrawerView mWearableNavigationDrawer;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

setAmbientEnabled();

mWearableNavigationDrawer = (WearableNavigationDrawerView) findViewById(R.id.top_navigation_drawer);
mWearableNavigationDrawer.getController().peekDrawer();

}
}


I still have to connect the activity and the fregement to the menu items, but first I'd like to make the drawer work with two items.










share|improve this question


























    up vote
    0
    down vote

    favorite












    I need to extend my application, which basically stands for a MainActivity with a Settings page. I'm trying to implement the WearableDrawerLayout, but could not find any good examples, and I know I'm missing something, since the drawer shows up empty.



    The activity_main.xml contains the main layout, and the parts for the drawer



    activity_main.xml:



    <?xml version="1.0" encoding="utf-8"?>
    <android.support.wear.widget.drawer.WearableDrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/drawer_layout"
    android:fitsSystemWindows="true">

    <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:paddingLeft="20dp"
    android:paddingRight="20dp">

    <ImageView
    android:id="@+id/imageView"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="40dp"
    android:minHeight="50dp"
    android:minWidth="50dp"
    android:src="@drawable/ic_alarm"
    android:tint="@color/white" />

    <TextView
    android:id="@+id/text"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="@dimen/screen_percentage_05"
    android:text="asd"
    android:textAlignment="center"
    android:textColor="@color/white"
    android:textStyle="bold" />
    </LinearLayout>

    <android.support.wear.widget.drawer.WearableNavigationDrawerView
    android:id="@+id/top_navigation_drawer"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:menu="@menu/drawer_view"/>

    </android.support.wear.widget.drawer.WearableDrawerLayout>


    res/menu/drawer_view.xml (for populating the navigation):



    <?xml version="1.0" encoding="utf-8"?>
    <menu xmlns:android="http://schemas.android.com/apk/res/android">
    <group android:checkableBehavior="single">
    <item
    android:id="@+id/nav_camera"
    android:icon="@android:drawable/ic_menu_camera"
    android:title="main" />
    <item
    android:id="@+id/nav_gallery"
    android:icon="@android:drawable/ic_menu_gallery"
    android:title="settings" />
    </group>
    </menu>


    And the MainActivity.class:



    public class MainActivity extends WearableActivity {

    private WearableNavigationDrawerView mWearableNavigationDrawer;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    setAmbientEnabled();

    mWearableNavigationDrawer = (WearableNavigationDrawerView) findViewById(R.id.top_navigation_drawer);
    mWearableNavigationDrawer.getController().peekDrawer();

    }
    }


    I still have to connect the activity and the fregement to the menu items, but first I'd like to make the drawer work with two items.










    share|improve this question
























      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      I need to extend my application, which basically stands for a MainActivity with a Settings page. I'm trying to implement the WearableDrawerLayout, but could not find any good examples, and I know I'm missing something, since the drawer shows up empty.



      The activity_main.xml contains the main layout, and the parts for the drawer



      activity_main.xml:



      <?xml version="1.0" encoding="utf-8"?>
      <android.support.wear.widget.drawer.WearableDrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      xmlns:app="http://schemas.android.com/apk/res-auto"
      android:id="@+id/drawer_layout"
      android:fitsSystemWindows="true">

      <LinearLayout
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      android:orientation="vertical"
      android:paddingLeft="20dp"
      android:paddingRight="20dp">

      <ImageView
      android:id="@+id/imageView"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:layout_marginTop="40dp"
      android:minHeight="50dp"
      android:minWidth="50dp"
      android:src="@drawable/ic_alarm"
      android:tint="@color/white" />

      <TextView
      android:id="@+id/text"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:layout_marginTop="@dimen/screen_percentage_05"
      android:text="asd"
      android:textAlignment="center"
      android:textColor="@color/white"
      android:textStyle="bold" />
      </LinearLayout>

      <android.support.wear.widget.drawer.WearableNavigationDrawerView
      android:id="@+id/top_navigation_drawer"
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      app:menu="@menu/drawer_view"/>

      </android.support.wear.widget.drawer.WearableDrawerLayout>


      res/menu/drawer_view.xml (for populating the navigation):



      <?xml version="1.0" encoding="utf-8"?>
      <menu xmlns:android="http://schemas.android.com/apk/res/android">
      <group android:checkableBehavior="single">
      <item
      android:id="@+id/nav_camera"
      android:icon="@android:drawable/ic_menu_camera"
      android:title="main" />
      <item
      android:id="@+id/nav_gallery"
      android:icon="@android:drawable/ic_menu_gallery"
      android:title="settings" />
      </group>
      </menu>


      And the MainActivity.class:



      public class MainActivity extends WearableActivity {

      private WearableNavigationDrawerView mWearableNavigationDrawer;

      @Override
      protected void onCreate(Bundle savedInstanceState) {
      super.onCreate(savedInstanceState);
      setContentView(R.layout.activity_main);

      setAmbientEnabled();

      mWearableNavigationDrawer = (WearableNavigationDrawerView) findViewById(R.id.top_navigation_drawer);
      mWearableNavigationDrawer.getController().peekDrawer();

      }
      }


      I still have to connect the activity and the fregement to the menu items, but first I'd like to make the drawer work with two items.










      share|improve this question













      I need to extend my application, which basically stands for a MainActivity with a Settings page. I'm trying to implement the WearableDrawerLayout, but could not find any good examples, and I know I'm missing something, since the drawer shows up empty.



      The activity_main.xml contains the main layout, and the parts for the drawer



      activity_main.xml:



      <?xml version="1.0" encoding="utf-8"?>
      <android.support.wear.widget.drawer.WearableDrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      xmlns:app="http://schemas.android.com/apk/res-auto"
      android:id="@+id/drawer_layout"
      android:fitsSystemWindows="true">

      <LinearLayout
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      android:orientation="vertical"
      android:paddingLeft="20dp"
      android:paddingRight="20dp">

      <ImageView
      android:id="@+id/imageView"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:layout_marginTop="40dp"
      android:minHeight="50dp"
      android:minWidth="50dp"
      android:src="@drawable/ic_alarm"
      android:tint="@color/white" />

      <TextView
      android:id="@+id/text"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:layout_marginTop="@dimen/screen_percentage_05"
      android:text="asd"
      android:textAlignment="center"
      android:textColor="@color/white"
      android:textStyle="bold" />
      </LinearLayout>

      <android.support.wear.widget.drawer.WearableNavigationDrawerView
      android:id="@+id/top_navigation_drawer"
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      app:menu="@menu/drawer_view"/>

      </android.support.wear.widget.drawer.WearableDrawerLayout>


      res/menu/drawer_view.xml (for populating the navigation):



      <?xml version="1.0" encoding="utf-8"?>
      <menu xmlns:android="http://schemas.android.com/apk/res/android">
      <group android:checkableBehavior="single">
      <item
      android:id="@+id/nav_camera"
      android:icon="@android:drawable/ic_menu_camera"
      android:title="main" />
      <item
      android:id="@+id/nav_gallery"
      android:icon="@android:drawable/ic_menu_gallery"
      android:title="settings" />
      </group>
      </menu>


      And the MainActivity.class:



      public class MainActivity extends WearableActivity {

      private WearableNavigationDrawerView mWearableNavigationDrawer;

      @Override
      protected void onCreate(Bundle savedInstanceState) {
      super.onCreate(savedInstanceState);
      setContentView(R.layout.activity_main);

      setAmbientEnabled();

      mWearableNavigationDrawer = (WearableNavigationDrawerView) findViewById(R.id.top_navigation_drawer);
      mWearableNavigationDrawer.getController().peekDrawer();

      }
      }


      I still have to connect the activity and the fregement to the menu items, but first I'd like to make the drawer work with two items.







      android wear-os






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 8 at 14:12









      adamb

      124110




      124110





























          active

          oldest

          votes











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53209511%2fhow-to-implement-navigation-drawer-for-wear-os-for-one-activity-and-settings-fre%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown






























          active

          oldest

          votes













          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes
















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.





          Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


          Please pay close attention to the following guidance:


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53209511%2fhow-to-implement-navigation-drawer-for-wear-os-for-one-activity-and-settings-fre%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          這個網誌中的熱門文章

          Hercules Kyvelos

          Tangent Lines Diagram Along Smooth Curve

          Yusuf al-Mu'taman ibn Hud