내 앱에 툴바를 만들고 싶은데, 안드로이드 툴바의 표준 높이가 얼마인지 궁금합니다.
나는 그것이 손가락만큼 크지 만 크지 않기를 바랍니다. 표준 크기가 있습니까?
답변:
터치 가능한 요소에 권장되는 최소 크기는 48dp 입니다. 자세한 측정 항목 은 이 페이지 를 참조하세요.
android:minHeight="?attr/actionBarSize"
.
@ vedant1811 답변 외에도 actionBarSize
attrs에서 프로그래밍 방식으로 얻을 수 있습니다 .
TypedValue tv = new TypedValue();
if (context.getTheme().resolveAttribute(android.R.attr.actionBarSize, tv, true))
{
actionBarHeight = TypedValue.complexToDimensionPixelSize(tv.data, context.getResources().getDisplayMetrics());
}
다음 방법을 사용하여 프로그래밍 방식으로 AppBar 높이를 가져올 수 있습니다.
private static final int DEFAULT_TOOLBAR_HEIGHT = 56;
private static int toolBarHeight = -1;
public static int getToolBarHeight(Context context) {
if (toolBarHeight > 0) {
return toolBarHeight;
}
final Resources resources = context.getResources();
final int resourceId = resources.getIdentifier("action_bar_size", "dimen", "android");
toolBarHeight = resourceId > 0 ?
resources.getDimensionPixelSize(resourceId) :
(int) convertDpToPixel(DEFAULT_TOOLBAR_HEIGHT);
return toolBarHeight;
}
public static float convertDpToPixel(Context context, float dp) {
float scale = context.getResources().getDisplayMetrics().density;
return dp * scale + 0.5f;
}
들어 전화 는 것입니다 56dp
같은 대형 기기과 태블릿 당신이 할 수있는 더 많은 공간이64dp
안드로이드에 이미 존재하는 툴바 위젯을 사용하고 높이 wrap_content를 입력 할 수 있으므로 함께 제공되는 기본 크기를 얻는 것이 좋습니다.
여기
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:background="@color/dark_cerulean">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:paddingEnd="16dp"
android:paddingStart="16dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:layout_gravity="end"
android:gravity="end"
android:layout_marginEnd="16dp"
android:textColor="@color/white"
android:id="@+id/toolbar_title" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/image1"
android:id="@+id/image"/>
</LinearLayout>
</android.support.v7.widget.Toolbar>