gpt4 book ai didi

java - 如何在我的应用中添加 Material Design

转载 作者:行者123 更新时间:2023-11-29 20:59:25 24 4
gpt4 key购买 nike

我有一个大问题。使用 Eclipse(我有最新的 Android 5.0 API 和 SDK),我试图用 Material 设计来改造我的应用程序。问题是 Eclipse 似乎无法识别代码。我将尝试非常详细:这是我的主要代码:

主 Activity .java

public class MainActivity extends Activity implements OnClickListener {

private final static String RADIO_STATION_URL = "http://178.32.137.180:8665/stream";

private ProgressBar playSeekBar;

private Button buttonPlay;

private Button buttonStopPlay;

private MediaPlayer player;

/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

initializeUIElements();

initializeMediaPlayer();
}

private void initializeUIElements() {

playSeekBar = (ProgressBar) findViewById(R.id.progressBar1);
playSeekBar.setMax(100);
playSeekBar.setVisibility(View.INVISIBLE);

buttonPlay = (Button) findViewById(R.id.buttonPlay);
buttonPlay.setOnClickListener(this);

buttonStopPlay = (Button) findViewById(R.id.buttonStopPlay);
buttonStopPlay.setEnabled(false);
buttonStopPlay.setOnClickListener(this);

}

public void onClick(View v) {
if (v == buttonPlay) {
startPlaying();
} else if (v == buttonStopPlay) {
stopPlaying();

}
}

private void startPlaying() {
buttonStopPlay.setEnabled(true);
buttonPlay.setEnabled(false);

playSeekBar.setVisibility(View.VISIBLE);

player.prepareAsync();

player.setOnPreparedListener(new OnPreparedListener() {

public void onPrepared(MediaPlayer mp) {
player.start();
}
});

}

private void stopPlaying() {
if (player.isPlaying()) {
player.stop();
player.release();
initializeMediaPlayer();
}

buttonPlay.setEnabled(true);
buttonStopPlay.setEnabled(false);
playSeekBar.setVisibility(View.INVISIBLE);

}

private void initializeMediaPlayer() {
player = new MediaPlayer();
try {
player.setDataSource(RADIO_STATION_URL);
} catch (IllegalArgumentException e) {
e.printStackTrace();
} catch (IllegalStateException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}

player.setOnBufferingUpdateListener(new OnBufferingUpdateListener() {

public void onBufferingUpdate(MediaPlayer mp, int percent) {
playSeekBar.setSecondaryProgress(percent);
Log.i("Buffering", "" + percent);
}
});
}

@Override
protected void onPause() {
super.onPause();


}


};

资源/值上的 Styles.xml

<resources>

<!--
Base application theme, dependent on API level. This theme is replaced
by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
-->
<style name="AppBaseTheme" parent="@android:style/Theme.Black">
<!--
Theme customizations available in newer API levels can go in
res/values-vXX/styles.xml, while customizations related to
backward-compatibility can go here.
-->
</style>

<!-- Application theme. -->
<style name="AppTheme" parent="AppBaseTheme">
<!-- All customizations that are NOT specific to a particular
API-level can go here. -->
</style>

</resources>

我试图遵循本指南 -> http://android-developers.blogspot.gr/2014/10/appcompat-v21-material-design-for-pre.html但是我在第一点之后被阻止了,将 Activity 扩展到 ActionBarActivity (完成)...我能帮忙吗?我只想将 Material Design(黑色)应用到我的应用程序中。有人可以帮助我吗?我对 android 的这一部分有点陌生,所以要非常详细。

最佳答案

您需要在您的项目中添加对 appcompatv7 库的依赖,以在 SDK 5.0 以外的设备上支持 Material Design

以下是如何在 Eclipse 中设置 appcompat 库的说明:https://developer.android.com/tools/support-library/setup.html

之后你需要这样定义你的主题:

<style name="AppBaseTheme" parent="Theme.AppCompat">
</style>

以及扩展 ActionBarActivity 的所有 Activity :

public class MainActivity extends ActionBarActivity {
}

关于java - 如何在我的应用中添加 Material Design,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26610369/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com