mirror of
				https://github.com/TeamNewPipe/NewPipe
				synced 2025-10-31 07:13:00 +00:00 
			
		
		
		
	resolve conflict
This commit is contained in:
		| @@ -28,8 +28,13 @@ import android.os.Looper; | ||||
| import android.preference.PreferenceManager; | ||||
| import android.support.annotation.NonNull; | ||||
| import android.support.annotation.Nullable; | ||||
| import android.support.design.widget.NavigationView; | ||||
| import android.support.v4.app.Fragment; | ||||
| import android.support.v4.app.FragmentManager; | ||||
| import android.support.v4.view.GravityCompat; | ||||
| import android.support.v4.widget.DrawerLayout; | ||||
| import android.support.v7.app.ActionBar; | ||||
| import android.support.v7.app.ActionBarDrawerToggle; | ||||
| import android.support.v7.app.AppCompatActivity; | ||||
| import android.support.v7.widget.Toolbar; | ||||
| import android.util.Log; | ||||
| @@ -45,6 +50,7 @@ import org.schabi.newpipe.database.history.dao.WatchHistoryDAO; | ||||
| import org.schabi.newpipe.database.history.model.HistoryEntry; | ||||
| import org.schabi.newpipe.database.history.model.SearchHistoryEntry; | ||||
| import org.schabi.newpipe.database.history.model.WatchHistoryEntry; | ||||
| import org.schabi.newpipe.extractor.NewPipe; | ||||
| import org.schabi.newpipe.extractor.StreamingService; | ||||
| import org.schabi.newpipe.extractor.stream.AudioStream; | ||||
| import org.schabi.newpipe.extractor.stream.StreamInfo; | ||||
| @@ -69,6 +75,7 @@ public class MainActivity extends AppCompatActivity implements HistoryListener { | ||||
|     private static final String TAG = "MainActivity"; | ||||
|     public static final boolean DEBUG = false; | ||||
|     private SharedPreferences sharedPreferences; | ||||
|     private ActionBarDrawerToggle toggle = null; | ||||
|  | ||||
|     /*////////////////////////////////////////////////////////////////////////// | ||||
|     // Activity's LifeCycle | ||||
| @@ -76,7 +83,8 @@ public class MainActivity extends AppCompatActivity implements HistoryListener { | ||||
|  | ||||
|     @Override | ||||
|     protected void onCreate(Bundle savedInstanceState) { | ||||
|         if (DEBUG) Log.d(TAG, "onCreate() called with: savedInstanceState = [" + savedInstanceState + "]"); | ||||
|         if (DEBUG) | ||||
|             Log.d(TAG, "onCreate() called with: savedInstanceState = [" + savedInstanceState + "]"); | ||||
|         ThemeHelper.setTheme(this); | ||||
|         super.onCreate(savedInstanceState); | ||||
|         setContentView(R.layout.activity_main); | ||||
| @@ -85,8 +93,59 @@ public class MainActivity extends AppCompatActivity implements HistoryListener { | ||||
|             initFragments(); | ||||
|         } | ||||
|  | ||||
|         Toolbar toolbar = findViewById(R.id.toolbar); | ||||
|         final Toolbar toolbar = findViewById(R.id.toolbar); | ||||
|         final DrawerLayout drawer = findViewById(R.id.drawer_layout); | ||||
|         final NavigationView drawerItems = findViewById(R.id.navigation); | ||||
|         setSupportActionBar(toolbar); | ||||
|  | ||||
|         drawerItems.getMenu().getItem(NewPipe.getIdOfService(PreferenceManager.getDefaultSharedPreferences(getApplicationContext()).getString("service", "YouTube"))).setChecked(true); | ||||
|  | ||||
|         if (!BuildConfig.BUILD_TYPE.equals("release")) { | ||||
|             toggle = new ActionBarDrawerToggle(this, drawer, toolbar, R.string.drawer_open, R.string.drawer_close); | ||||
|             toggle.syncState(); | ||||
|             drawer.addDrawerListener(toggle); | ||||
|  | ||||
|             drawerItems.setNavigationItemSelectedListener(new NavigationView.OnNavigationItemSelectedListener() { | ||||
|                 public boolean onNavigationItemSelected(@NonNull MenuItem item) { | ||||
|                     drawerItems.getMenu().getItem(NewPipe.getIdOfService(PreferenceManager.getDefaultSharedPreferences(getApplicationContext()).getString("service", "YouTube"))).setChecked(false); | ||||
|                     SharedPreferences.Editor editor = PreferenceManager.getDefaultSharedPreferences(getApplicationContext()).edit(); | ||||
|                     editor.putString("service", item.getTitle().toString()); | ||||
|                     editor.apply(); | ||||
|                     drawer.closeDrawers(); | ||||
|                     drawerItems.getMenu().getItem(NewPipe.getIdOfService(PreferenceManager.getDefaultSharedPreferences(getApplicationContext()).getString("service", "YouTube"))).setChecked(true); | ||||
|                     return true; | ||||
|                 } | ||||
|             }); | ||||
|         } else { | ||||
|             drawer.setDrawerLockMode(DrawerLayout.LOCK_MODE_LOCKED_CLOSED); | ||||
|         } | ||||
|  | ||||
|         getSupportFragmentManager().addOnBackStackChangedListener(new FragmentManager.OnBackStackChangedListener() { | ||||
|             @Override | ||||
|             public void onBackStackChanged() { | ||||
|                 if (getSupportFragmentManager().getBackStackEntryCount() > 1) { | ||||
|                     getSupportActionBar().setDisplayHomeAsUpEnabled(true); | ||||
|                     toolbar.setNavigationOnClickListener(new View.OnClickListener() { | ||||
|                         @Override | ||||
|                         public void onClick(View v) { | ||||
|                             onBackPressed(); | ||||
|                         } | ||||
|                     }); | ||||
|                 } else { | ||||
|                     getSupportActionBar().setDisplayHomeAsUpEnabled(false); | ||||
|                     if (toggle != null) { | ||||
|                         toggle.syncState(); | ||||
|                         toolbar.setNavigationOnClickListener(new View.OnClickListener() { | ||||
|                             @Override | ||||
|                             public void onClick(View v) { | ||||
|                                 drawer.openDrawer(GravityCompat.START); | ||||
|                             } | ||||
|                         }); | ||||
|                     } | ||||
|                 } | ||||
|             } | ||||
|         }); | ||||
|  | ||||
|         sharedPreferences = PreferenceManager.getDefaultSharedPreferences(this); | ||||
|  | ||||
|         initHistory(); | ||||
|   | ||||
| @@ -138,7 +138,7 @@ public class MainFragment extends BaseFragment implements TabLayout.OnTabSelecte | ||||
|     public boolean onOptionsItemSelected(MenuItem item) { | ||||
|         switch (item.getItemId()) { | ||||
|             case R.id.action_search: | ||||
|                 NavigationHelper.openSearchFragment(getFragmentManager(), 0, ""); | ||||
|                 NavigationHelper.openSearchFragment(getFragmentManager(), NewPipe.getIdOfService(PreferenceManager.getDefaultSharedPreferences(getActivity()).getString("service", "YouTube")), ""); | ||||
|                 return true; | ||||
|         } | ||||
|         return super.onOptionsItemSelected(item); | ||||
|   | ||||
| @@ -342,7 +342,11 @@ public class VideoDetailFragment extends BaseStateFragment<StreamInfo> implement | ||||
|                 } | ||||
|                 break; | ||||
|             case R.id.detail_thumbnail_root_layout: | ||||
|                 openVideoPlayer(); | ||||
|                 if (currentInfo.video_streams.isEmpty() && currentInfo.video_only_streams.isEmpty()) { | ||||
|                     openBackgroundPlayer(false); | ||||
|                 } else { | ||||
|                     openVideoPlayer(); | ||||
|                 } | ||||
|                 break; | ||||
|             case R.id.detail_title_root_layout: | ||||
|                 toggleTitleAndDescription(); | ||||
| @@ -1158,6 +1162,13 @@ public class VideoDetailFragment extends BaseStateFragment<StreamInfo> implement | ||||
|             showSnackBarError(info.getErrors(), UserAction.REQUESTED_STREAM, NewPipe.getNameOfService(info.getServiceId()), info.getUrl(), 0); | ||||
|         } | ||||
|  | ||||
|         if (info.video_streams.isEmpty() && info.video_only_streams.isEmpty()) { | ||||
|             detailControlsBackground.setVisibility(View.GONE); | ||||
|             detailControlsPopup.setVisibility(View.GONE); | ||||
|             spinnerToolbar.setVisibility(View.GONE); | ||||
|             thumbnailPlayButton.setImageResource(R.drawable.ic_headset_white_24dp); | ||||
|         } | ||||
|  | ||||
|         if (autoPlayEnabled) { | ||||
|             openVideoPlayer(); | ||||
|             // Only auto play in the first open | ||||
| @@ -1201,4 +1212,4 @@ public class VideoDetailFragment extends BaseStateFragment<StreamInfo> implement | ||||
|  | ||||
|         showError(getString(R.string.blocked_by_gema), false, R.drawable.gruese_die_gema); | ||||
|     } | ||||
| } | ||||
| } | ||||
|   | ||||
| @@ -1,18 +1,30 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <merge | ||||
| <android.support.v4.widget.DrawerLayout | ||||
|     xmlns:android="http://schemas.android.com/apk/res/android" | ||||
|     xmlns:app="http://schemas.android.com/apk/res-auto" | ||||
|     xmlns:tools="http://schemas.android.com/tools" | ||||
|     android:id="@+id/drawer_layout" | ||||
|     android:layout_width="match_parent" | ||||
|     android:layout_height="match_parent" | ||||
|     android:orientation="vertical" | ||||
|     tools:context="org.schabi.newpipe.MainActivity"> | ||||
|     android:layout_height="match_parent"> | ||||
|  | ||||
|     <FrameLayout | ||||
|         android:id="@+id/fragment_holder" | ||||
|         android:layout_width="match_parent" | ||||
|         android:layout_height="match_parent" | ||||
|         android:layout_marginTop="?attr/actionBarSize"/> | ||||
|         android:orientation="vertical" | ||||
|         tools:context="org.schabi.newpipe.MainActivity"> | ||||
|         <FrameLayout | ||||
|             android:id="@+id/fragment_holder" | ||||
|             android:layout_width="match_parent" | ||||
|             android:layout_height="match_parent" | ||||
|             android:layout_marginTop="?attr/actionBarSize" /> | ||||
|  | ||||
|     <include layout="@layout/toolbar_layout"/> | ||||
|         <include layout="@layout/toolbar_layout" /> | ||||
|     </FrameLayout> | ||||
|  | ||||
| </merge> | ||||
|     <android.support.design.widget.NavigationView | ||||
|         android:id="@+id/navigation" | ||||
|         android:layout_width="wrap_content" | ||||
|         android:layout_height="match_parent" | ||||
|         android:layout_gravity="start" | ||||
|         app:menu="@menu/drawer_items" /> | ||||
| </android.support.v4.widget.DrawerLayout> | ||||
| @@ -273,7 +273,7 @@ | ||||
|                             android:paddingBottom="6dp" | ||||
|                             android:paddingTop="6dp" | ||||
|                             android:text="@string/controls_background_title" | ||||
|                             android:textSize="12sp"/> | ||||
|                             android:textSize="12sp" /> | ||||
|                     </RelativeLayout> | ||||
|  | ||||
|                     <!--UPLOADER--> | ||||
|   | ||||
							
								
								
									
										5
									
								
								app/src/main/res/menu/drawer_items.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										5
									
								
								app/src/main/res/menu/drawer_items.xml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,5 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <menu xmlns:android="http://schemas.android.com/apk/res/android"> | ||||
|     <item android:title="@string/youtube" /> | ||||
|     <item android:title="@string/soundcloud" /> | ||||
| </menu> | ||||
| @@ -46,6 +46,13 @@ | ||||
|         <item>144p</item> | ||||
|     </string-array> | ||||
|  | ||||
|     <string-array name="service_list" translatable="false"> | ||||
|         <item>@string/youtube</item> | ||||
|         <item>@string/soundcloud</item> | ||||
|     </string-array> | ||||
|     <string name="service_key" translatable="false">service</string> | ||||
|     <string name="default_service_value" translatable="false">@string/youtube</string> | ||||
|  | ||||
|     <string name="video_mp4_key" translatable="false">video_mp4</string> | ||||
|     <string name="video_webm_key" translatable="false">video_webm</string> | ||||
|     <string name="video_3gp_key" translatable="false">video_3gp</string> | ||||
|   | ||||
| @@ -84,6 +84,7 @@ | ||||
|     <string name="show_hold_to_append_summary">Show tip when background or popup button is pressed on video details page</string> | ||||
|     <string name="url_not_supported_toast">URL not supported</string> | ||||
|     <string name="default_content_country_title">Default content country</string> | ||||
|     <string name="service_title">Service</string> | ||||
|     <string name="search_language_title">Default content language</string> | ||||
|     <string name="settings_category_player_title">Player</string> | ||||
|     <string name="settings_category_player_behavior_title">Behavior</string> | ||||
| @@ -329,4 +330,10 @@ | ||||
|     <string name="start_here_on_main">Start Playing Here</string> | ||||
|     <string name="start_here_on_background">Start Here on Background</string> | ||||
|     <string name="start_here_on_popup">Start Here on Popup</string> | ||||
|  | ||||
|     <!-- Drawer --> | ||||
|     <string name="drawer_open">Open Drawer</string> | ||||
|     <string name="drawer_close">Close Drawer</string> | ||||
|     <string name="youtube" translatable="false">YouTube</string> | ||||
|     <string name="soundcloud" translatable="false">SoundCloud</string> | ||||
| </resources> | ||||
|   | ||||
| @@ -2,7 +2,6 @@ | ||||
| <PreferenceScreen | ||||
|     xmlns:android="http://schemas.android.com/apk/res/android" | ||||
|     android:title="@string/content"> | ||||
|  | ||||
|     <ListPreference | ||||
|         android:defaultValue="@string/default_country_value" | ||||
|         android:entries="@array/country_names" | ||||
| @@ -38,5 +37,4 @@ | ||||
|         android:key="@string/main_page_content_key" | ||||
|         android:title="@string/main_page_content" | ||||
|         android:summary="%s"/> | ||||
|  | ||||
| </PreferenceScreen> | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Christian Schabesberger
					Christian Schabesberger