ActionBar appcompat中的ProgressBar

时间:2014-01-24 10:49:12

标签: android

我正在尝试在我的应用程序中使用appcompat。但是ActionBar中的ProgressBar非常大。我怎样才能减少ProgressBar?

http://itmages.ru/image/view/1451590/2f1dfa13

代码清单

<activity
 android:screenOrientation="portrait"
 android:name="com.example.ok1.MainActivity"
 android:theme="@style/Theme.AppCompat.Light" 
 android:label="@string/app_name" >

2 个答案:

答案 0 :(得分:5)

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_height="wrap_content"
    android:layout_width="@dimen/abc_action_button_min_width"
    android:minWidth="@dimen/abc_action_button_min_width">

   <ProgressBar
       style="@style/Widget.AppCompat.ProgressBar"
       android:layout_width="32dp"
       android:layout_height="32dp"
       android:layout_gravity="center"/>

</FrameLayout>

这可能对你有帮助..

答案 1 :(得分:3)

请使用进度条中的样式

<ProgressBar 
android:layout_width="wrap_content"
android:layout_height="wrap_content"
style="?android:attr/android:progressBarStyleSmall" />