173

ドキュメント(または誰か)はデフォルトのdpi値について話しますか

  • ラージTextView{ android:textAppearance="?android:attr/textAppearanceLarge"}
  • ミディアムTextView{ android:textAppearance="?android:attr/textAppearanceMedium"}
  • 小さなTextView{ android:textAppearance="?android:attr/textAppearanceSmall"}

SDKのウィジェット?

大、中、小、および通常のテキストビュー

別の言い方をすれば、android:textAppearance属性を使用せずにこれらのテキストビューの外観を複製できますか?

4

3 に答える 3

286

androidsdkディレクトリを参照してください。

\platforms\android-X\data\res\values\themes.xml

    <item name="textAppearanceLarge">@android:style/TextAppearance.Large</item>
    <item name="textAppearanceMedium">@android:style/TextAppearance.Medium</item>
    <item name="textAppearanceSmall">@android:style/TextAppearance.Small</item>

\platforms\android-X\data\res\values\styles.xml

<style name="TextAppearance.Large">
    <item name="android:textSize">22sp</item>
</style>

<style name="TextAppearance.Medium">
    <item name="android:textSize">18sp</item>
</style>

<style name="TextAppearance.Small">
    <item name="android:textSize">14sp</item>
    <item name="android:textColor">?textColorSecondary</item>
</style>

TextAppearance.Largeスタイルがスタイルから継承されていることを意味TextAppearanceします。スタイルの完全な定義を確認したい場合も、それをトレースする必要があります。

リンク:http ://developer.android.com/design/style/typography.html

于 2012-07-21T08:13:02.010 に答える
19

別の言い方をすれば、android:textAppearance属性を使用せずに、これらのテキストビューの外観を複製できますか?

biegleuxすでに言ったように:

  • smallは14spを表します
  • ミディアムは18spを表します
  • は22spを表します

Androidアプリのテキストにの値を使用する場合dimens.xmlは、フォルダーにファイルを作成valuesし、次の3行でテキストサイズを定義できます。

<dimen name="text_size_small">14sp</dimen>
<dimen name="text_size_medium">18sp</dimen>
<dimen name="text_size_large">22sp</dimen>

ファイルからの大きなテキストを含むTextViewの例を次に示します。dimens.xml

<TextView
  android:id="@+id/hello_world"
  android:text="hello world"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:textSize="@dimen/text_size_large"/>
于 2015-08-17T17:39:39.397 に答える
9

プログラムで、次を使用できます。

textView.setTextAppearance(android.R.style.TextAppearance_Large);
于 2017-09-26T16:16:50.953 に答える