values 내에 dimens.xml 이 있습니다.
	거기에서 폰과 태블릿에 맞게 dp 값을 재 조정해서 layout  파일에 적용하세요
	예)
	    <TextView
	        android:id="@+id/title"
	        android:layout_width="match_parent"
	        android:layout_height="@dimen/applist_title_height"
	        android:textSize="@dimen/applist_title" />
	 
	 
	sw600dp/dimens.xml
	
		<dimen name="applist_title_height">130dp</dimen>
	
		<dimen name="applist_title">50sp</dimen>
	
		 
	
		xxhdpi/dimens.xml
	
		
			<dimen name="applist_title_height">70dp</dimen>
		
			<dimen name="applist_title">34sp</dimen>