Created
September 19, 2015 21:56
-
-
Save oliviadodge/01870d17a1151a63c75a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
xmlns:tools="http://schemas.android.com/tools" | |
android:layout_width="match_parent" | |
android:layout_height="match_parent" | |
android:baselineAligned="false" | |
android:divider="?android:attr/dividerHorizontal" | |
android:orientation="horizontal" | |
tools:context="com.example.android.sunshine.app.MainActivity"> | |
<!-- | |
This layout is a two-pane layout for the Items master/detail flow. | |
--> | |
<fragment | |
android:id="@+id/fragment_artists" | |
android:name="com.example.android.spotifystreamer.ArtistsFragment" | |
android:layout_width="0dp" | |
android:layout_height="match_parent" | |
android:layout_weight="1" | |
tools:layout="@android:layout/list_content" /> | |
<FrameLayout | |
android:id="@+id/fragment_top_tracks" | |
android:layout_width="0dp" | |
android:layout_height="match_parent" | |
android:layout_weight="1" | |
tools:layout="@android:layout/list_content"/> | |
</LinearLayout> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment