電話で画面を埋め、タブレットでポップアップ(ダイアログ)したいアクティビティがあります。
このようなレイアウトファイルを作ると思ったのですが、
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="@dimen/main_layout_width"
android:layout_height="match_parent">
width の値を次のように外部化します。
values/dimens.xml で
<dimen name="tutorial_width">match_parent</dimen>
values-xlarge/dimens.xml で
<dimen name="tutorial_width">320dp</dimen>
しかし、「match_parent」を dimen 要素として表現することはできません。何か助けはありますか?ありがとう!