将Android Studio设置重置为linux上的默认设置

时间:2015-06-14 10:32:07

标签: android android-studio

大家。我曾经在Mac上开发Android应用程序。最近我在运行Xubuntu的Thinkpad上安装了android开发环境。

我通过File->将Mac上的Android工作室设置导入Xubuntu上的Android工作室。导入设置。

但是在我这样做之后,一切都出了问题。热键,java路径ecc。

我试图删除android studio,然后再次下载,但设置仍在那里。

在互联网上,我几乎找不到任何关于此事的信息,是否有人知道如何将Android Studio设置重置为默认设置?谢谢!

4 个答案:

答案 0 :(得分:10)

这很简单。根据您的AndroidStudio版本,设置存储在public static void main ( String[] args ) { JFrame frame = new JFrame("Testing"); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.setPreferredSize(new Dimension(800,600)); frame.setLayout(new FlowLayout(FlowLayout.LEFT)); JPanel leftTop = new JPanel(); leftTop.setPreferredSize(new Dimension(251,300)); leftTop.setBackground(Color.black); frame.getContentPane().add(leftTop); JPanel middleTop = new JPanel(); middleTop.setPreferredSize(new Dimension(251,300)); middleTop.setBackground(Color.white); frame.getContentPane().add(middleTop); JPanel rightTop = new JPanel(); rightTop.setPreferredSize(new Dimension(251,300)); rightTop.setBackground(Color.red); frame.getContentPane().add(rightTop); JPanel leftBottom = new JPanel(); leftBottom.setPreferredSize(new Dimension(251,300)); leftBottom.setBackground(Color.green); frame.getContentPane().add(leftBottom); JPanel middleBottom = new JPanel(); middleBottom.setPreferredSize(new Dimension(251,300)); middleBottom.setBackground(Color.yellow); frame.getContentPane().add(middleBottom); JPanel rightBottom = new JPanel(); rightBottom.setPreferredSize(new Dimension(251,300)); rightBottom.setBackground(Color.black); frame.getContentPane().add(rightBottom); frame.pack(); frame.setVisible(true); } ~/.AndroidStudio~/.AndroidStudio1.1

打开终端并运行以下代码:

~/.AndroidStudio1.2#查看您上面的三个文件夹中的哪一个。然后使用相应的ls -a | grep Android命令重命名您拥有的每个设置文件夹:

mv

答案 1 :(得分:2)

自从第一次提出这个问题以来,Linux 上的文件位置发生了变化。从 Android Studio 4.2 开始,您可以使用以下方法删除所有设置和缓存:

rm -rf ~/.config/Google/AndroidStudio*
rm -rf ~/.local/share/Google/AndroidStudio*
rm -rf ~/.cache/Google/AndroidStudio*

答案 2 :(得分:0)

在Windows机器上有一些相同的问题。通过映射不同的设置文件夹而不是重命名来解决它。这是我修复它的方式:https://stackoverflow.com/a/33021782/4747587

答案 3 :(得分:0)

使用相同的方法恢复与Windows的同事,但现在使用ubuntu,由终端恢复。

  1. 使用该命令知道PC上与android有关的文件夹 (ls -a | grep Android),没有parentisis。
  2. 例如,就我而言,这些: - Android - .AndroidStudio3.0 - AndroidStudioProjects - AndroidV

    1. 在我的情况下,我得到了文件夹.Android studio,我继续用命令删除 (rm -rf~ / .AndroidStudio3.0)没有parentisis。

    2. 我返回检查命令(ls -a | grep Android),没有parentisis。如果文件夹.Androidstudio3.0被删除,在我的情况下。

      • 的Android
      • AndroidStudioProjects
      • AndroidV
    3. 然后运行Android Studio启动器,Vooalaaa !! 首次配置并重置。

      为我的错误拼写和其他细节道歉,但是用这种方法我在ubuntu 16.04 LTS中解决了我的Android Studio。